• Модуль: sale
  • Путь к файлу: ~/bitrix/modules/sale/lib/shipmentpropertyvalue.php
  • Класс: BitrixSaleShipmentPropertyValue
  • Вызов: ShipmentPropertyValue::extractDeliveryIdList
static function extractDeliveryIdList(Entity $shipment)
{
	if (!$shipment instanceof Shipment)
	{
		return [];
	}

	return [$shipment->getDeliveryId()];
}