• Модуль: crm
  • Путь к файлу: ~/bitrix/modules/crm/lib/Service/Timeline/Item/Activity/Delivery.php
  • Класс: Bitrix\Crm\Service\Timeline\Item\Activity\Delivery
  • Вызов: Delivery::getDeliveryService
private function getDeliveryService(): ?array
{
	if (is_null($this->deliveryInfo))
	{
		$this->loadDeliveryInfo();
	}

	return
		(
			isset($this->deliveryInfo['DELIVERY_SERVICE'])
			&& is_array($this->deliveryInfo['DELIVERY_SERVICE'])
		)
			? $this->deliveryInfo['DELIVERY_SERVICE']
			: null
	;
}