• Модуль: sale
  • Путь к файлу: ~/bitrix/modules/sale/lib/discount.php
  • Класс: BitrixSaleDiscount
  • Вызов: Discount::getApplyDeliveryPrice
protected function getApplyDeliveryPrice()
{
	return array(
		'BASE_PRICE' => $this->orderData['BASE_PRICE_DELIVERY'] ?? 0.0,
		'PRICE' => $this->orderData['PRICE_DELIVERY'] ?? 0.0,
		'DISCOUNT' => $this->orderData['PRICE_DELIVERY_DIFF'] ?? 0.0,
	);
}