• Модуль: sale
  • Путь к файлу: ~/bitrix/modules/sale/lib/services/paysystem/restrictions/percentprice.php
  • Класс: BitrixSaleServicesPaySystemRestrictionsPercentPrice
  • Вызов: PercentPrice::getPrice
static function getPrice($entityParams, $paramValue)
{
	$percent = (float)$paramValue / 100;
	$price = (float)$entityParams['PRICE_ORDER'] * $percent;

	return PriceMaths::roundPrecision($price);
}