• Модуль: crm
  • Путь к файлу: ~/bitrix/modules/crm/lib/order/shipment.php
  • Класс: Bitrix\Crm\Order\Shipment
  • Вызов: Shipment::deleteRealization
private function deleteRealization(int $id): void
{
	$shipmentRealization = Crm\Order\Internals\ShipmentRealizationTable::getList([
		'select' => ['ID'],
		'filter' => [
			'=SHIPMENT_ID' => $id,
		],
		'limit' => 1,
	])->fetch();
	if ($shipmentRealization)
	{
		Crm\Order\Internals\ShipmentRealizationTable::delete($shipmentRealization['ID']);
	}
}