3.0.x-and-above/upload/catalog/controller/extension/module/facebook_business.php [557:572]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    private function getSpecialPrice($product_info) {
        if (!empty($product_info['special']) && $this->config->get('module_facebook_business_sync_specials_status')) {
            if ($product_info['tax_class_id']) {
                $special = $this->tax->calculate($product_info['special'], $product_info['tax_class_id'], $this->config->get('config_tax'));
            } else {
                $special = $product_info['special'];
            }

            $special = number_format(round((float)$special, 2), 2, '.', '');
            $special = $special . ' ' . strtoupper($this->config->get('config_currency'));
        } else {
            $special = '""';
        }

        return $special;
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



2.0.x-2.2.x/upload/catalog/controller/module/facebook_business.php [555:570]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    private function getSpecialPrice($product_info) {
        if (!empty($product_info['special']) && $this->config->get('facebook_business_sync_specials_status')) {
            if ($product_info['tax_class_id']) {
                $special = $this->tax->calculate($product_info['special'], $product_info['tax_class_id'], $this->config->get('config_tax'));
            } else {
                $special = $product_info['special'];
            }

            $special = number_format(round((float)$special, 2), 2, '.', '');
            $special = $special . ' ' . strtoupper($this->config->get('config_currency'));
        } else {
            $special = '""';
        }

        return $special;
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



2.3.x-and-above/upload/catalog/controller/extension/module/facebook_business.php [555:570]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    private function getSpecialPrice($product_info) {
        if (!empty($product_info['special']) && $this->config->get('facebook_business_sync_specials_status')) {
            if ($product_info['tax_class_id']) {
                $special = $this->tax->calculate($product_info['special'], $product_info['tax_class_id'], $this->config->get('config_tax'));
            } else {
                $special = $product_info['special'];
            }

            $special = number_format(round((float)$special, 2), 2, '.', '');
            $special = $special . ' ' . strtoupper($this->config->get('config_currency'));
        } else {
            $special = '""';
        }

        return $special;
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



