• Модуль: sale
  • Путь к файлу: ~/bitrix/modules/sale/lib/delivery/services/automatic_profile.php
  • Класс: BitrixSaleDeliveryServicesAutomaticProfile
  • Вызов: AutomaticProfile::getMarginPrice
protected function getMarginPrice($price)
{
	if($this->config["MAIN"]["MARGIN_TYPE"] == "%")
		$marginPrice = $price * floatval($this->config["MAIN"]["MARGIN_VALUE"]) / 100;
	else
		$marginPrice = floatval($this->config["MAIN"]["MARGIN_VALUE"]);

	return $marginPrice;
}