• Модуль: sale
  • Путь к файлу: ~/bitrix/modules/sale/lib/shipment.php
  • Класс: BitrixSaleShipment
  • Вызов: Shipment::getExtraServices
public function getExtraServices()
{
	if($this->extraServices === null)
	{
		$this->setExtraServices(
			DeliveryExtraServicesManager::getValuesForShipment(
				$this->getId(),
				$this->getDeliveryId()
			)
		);
	}

	return $this->extraServices;
}