• Модуль: sale
  • Путь к файлу: ~/bitrix/modules/sale/lib/discountbase.php
  • Класс: BitrixSaleDiscountBase
  • Вызов: DiscountBase::getShowPriceWithDiscountPercent
private function getShowPriceWithDiscountPercent(array $item)
{
	return [
		'SHOW_BASE_PRICE' => $item['BASE_PRICE'],
		'SHOW_PRICE' => $item['PRICE'],
		'SHOW_DISCOUNT' => $item['DISCOUNT_PRICE'],
		'SHOW_DISCOUNT_PERCENT' => $this->calculateDiscountPercent(
			$item['BASE_PRICE'],
			$item['DISCOUNT_PRICE']
		)
	];
}