• Модуль: sale
  • Путь к файлу: ~/bitrix/modules/sale/lib/internals/shipmentextraservice.php
  • Класс: BitrixSaleInternalsShipmentExtraServiceTable
  • Вызов: ShipmentExtraServiceTable::deleteByShipmentId
static function deleteByShipmentId($shipmentId)
{
	if(intval($shipmentId) > 0)
	{
		$con = BitrixMainApplication::getConnection();
		$sqlHelper = $con->getSqlHelper();
		$strSql = "DELETE FROM ".self::getTableName()." WHERE SHIPMENT_ID=".$sqlHelper->forSql($shipmentId);
		$con->queryExecute($strSql);
	}
}