3.0.x-and-above/upload/catalog/controller/extension/module/facebook_business.php [544:555]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    private function getPrice($product_info) {
        if ($product_info['tax_class_id']) {
            $price = $this->tax->calculate($product_info['price'], $product_info['tax_class_id'], $this->config->get('config_tax'));
        } else {
            $price = $product_info['price'];
        }

        $price = number_format(round((float)$price, 2), 2, '.', '');
        $price = $price . ' ' . strtoupper($this->config->get('config_currency'));

        return $price;
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



2.0.x-2.2.x/upload/catalog/controller/module/facebook_business.php [542:553]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    private function getPrice($product_info) {
        if ($product_info['tax_class_id']) {
            $price = $this->tax->calculate($product_info['price'], $product_info['tax_class_id'], $this->config->get('config_tax'));
        } else {
            $price = $product_info['price'];
        }

        $price = number_format(round((float)$price, 2), 2, '.', '');
        $price = $price . ' ' . strtoupper($this->config->get('config_currency'));

        return $price;
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



2.3.x-and-above/upload/catalog/controller/extension/module/facebook_business.php [542:553]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    private function getPrice($product_info) {
        if ($product_info['tax_class_id']) {
            $price = $this->tax->calculate($product_info['price'], $product_info['tax_class_id'], $this->config->get('config_tax'));
        } else {
            $price = $product_info['price'];
        }

        $price = number_format(round((float)$price, 2), 2, '.', '');
        $price = $price . ' ' . strtoupper($this->config->get('config_currency'));

        return $price;
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



