• Модуль: sale
  • Путь к файлу: ~/bitrix/modules/sale/lib/exchange/entity/shipmentimport.php
  • Класс: BitrixSaleExchangeEntityShipmentImport
  • Вызов: ShipmentImport::prepareFieldsDeliveryService
public function prepareFieldsDeliveryService($fields)
    {
        $result = array();

        $item = static::getFieldsDeliveryService($fields);
        if(count($item)>0)
	{
		$result = array(
			"CUSTOM_PRICE_DELIVERY" => "Y",
			"BASE_PRICE_DELIVERY" => $item["PRICE"],
			"CURRENCY" => $this->settings->getCurrency()
		);
	}

        return $result;
    }