• Модуль: sale
  • Путь к файлу: ~/bitrix/modules/sale/lib/discount.php
  • Класс: BitrixSaleDiscount
  • Вызов: Discount::setApplyResult
public function setApplyResult($applyResult)
{
	parent::setApplyResult($applyResult);

	if (!empty($this->applyResult['DISCOUNT_LIST']))
	{
		if (!empty($this->applyResult['DELIVERY']) && is_array($this->applyResult['DELIVERY']))
		{
			foreach ($this->applyResult['DELIVERY'] as $orderDiscountId => $apply)
			{
				if ($apply == 'Y')
					$this->applyResult['DISCOUNT_LIST'][$orderDiscountId] = 'Y';
			}
			unset($apply, $orderDiscountId);
		}
	}
}