• Модуль: sale
  • Путь к файлу: ~/bitrix/modules/sale/lib/delivery/services/manager.php
  • Класс: BitrixSaleDeliveryServicesManager
  • Вызов: Manager::isDeliveryInShipments
static function isDeliveryInShipments($deliveryId)
{
	$res = ShipmentTable::getList(array(
		'filter' => array(
			"=DELIVERY_ID" => $deliveryId,
			"=SYSTEM" => "N"
		),
		'select' => array("ID")
	));

	if($res->fetch())
		$result = true;
	else
		$result = false;

	return $result;
}