• Модуль: sale
  • Путь к файлу: ~/bitrix/modules/sale/lib/shipment.php
  • Класс: BitrixSaleShipment
  • Вызов: Shipment::calculateDelivery
public function calculateDelivery()
{
	if ($this->isSystem())
	{
		throw new MainNotSupportedException();
	}

	if ($this->getDeliveryId() === 0)
	{
		return new DeliveryCalculationResult();
	}

	return DeliveryServicesManager::calculateDeliveryPrice($this);
}