Server IP : 80.87.202.40 / Your IP : 216.73.216.169 Web Server : Apache System : Linux rospirotorg.ru 5.14.0-539.el9.x86_64 #1 SMP PREEMPT_DYNAMIC Thu Dec 5 22:26:13 UTC 2024 x86_64 User : bitrix ( 600) PHP Version : 8.2.27 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /home/bitrix/ext_www/cvetdv.ru/bitrix/modules/sale/lib/internals/ |
Upload File : |
<?php /** * Bitrix Framework * @package bitrix * @subpackage sale * @copyright 2001-2012 Bitrix */ namespace Bitrix\Sale\Internals; use Bitrix\Main; use Bitrix\Main\Localization\Loc; use Bitrix\Main\ORM\Data\DataManager; Loc::loadMessages(__FILE__); /** * Class OrderDeliveryBasketTable * * Fields: * <ul> * <li> ID int mandatory * <li> ORDER_DELIVERY_ID int mandatory * <li> BASKET_ID int mandatory * <li> QUANTITY unknown mandatory * <li> RESERVED_QUANTITY unknown mandatory * <li> PURCHASING_PRICE float mandatory * </ul> * * @package Bitrix\Sale * * DO NOT WRITE ANYTHING BELOW THIS * * <<< ORMENTITYANNOTATION * @method static EO_ShipmentItem_Query query() * @method static EO_ShipmentItem_Result getByPrimary($primary, array $parameters = []) * @method static EO_ShipmentItem_Result getById($id) * @method static EO_ShipmentItem_Result getList(array $parameters = []) * @method static EO_ShipmentItem_Entity getEntity() * @method static \Bitrix\Sale\Internals\EO_ShipmentItem createObject($setDefaultValues = true) * @method static \Bitrix\Sale\Internals\EO_ShipmentItem_Collection createCollection() * @method static \Bitrix\Sale\Internals\EO_ShipmentItem wakeUpObject($row) * @method static \Bitrix\Sale\Internals\EO_ShipmentItem_Collection wakeUpCollection($rows) */ class ShipmentItemTable extends DataManager { /** * Returns path to the file which contains definition of the class. * * @return string */ public static function getFilePath() { return __FILE__; } /** * @param $id * @return Main\Entity\DeleteResult * @throws Main\ArgumentException */ public static function deleteWithItems($id) { $id = intval($id); if ($id <= 0) throw new Main\ArgumentNullException("id"); $itemsFromDbList = ShipmentItemStoreTable::getList( array( "filter" => array( 'ORDER_DELIVERY_BASKET_ID' => $id, ), "select" => array("ID") ) ); while ($itemsFromDbItem = $itemsFromDbList->fetch()) ShipmentItemStoreTable::delete($itemsFromDbItem['ID']); return ShipmentItemTable::delete($id); } /** * Returns DB table name for entity. * * @return string */ public static function getTableName() { return 'b_sale_order_dlv_basket'; } /** * Returns entity map definition. * * @return array */ public static function getMap() { global $DB; return array( 'ID' => array( 'data_type' => 'integer', 'primary' => true, 'autocomplete' => true, 'title' => Loc::getMessage('ORDER_DELIVERY_BASKET_ENTITY_ID_FIELD'), ), 'ORDER_DELIVERY_ID' => array( 'data_type' => 'integer', 'required' => true, 'title' => Loc::getMessage('ORDER_DELIVERY_BASKET_ENTITY_ORDER_DELIVERY_ID_FIELD'), ), 'DELIVERY' => array( 'data_type' => 'Shipment', 'reference' => array( '=this.ORDER_DELIVERY_ID' => 'ref.ID' ) ), 'BASKET_ID' => array( 'data_type' => 'integer', 'required' => true, 'title' => Loc::getMessage('ORDER_DELIVERY_BASKET_ENTITY_BASKET_ID_FIELD'), ), 'BASKET' => array( 'data_type' => 'Bitrix\Sale\Internals\Basket', 'reference' => array( '=this.BASKET_ID' => 'ref.ID' ) ), 'DATE_INSERT' => array( 'data_type' => 'datetime' ), 'DATE_INSERT_SHORT' => array( 'data_type' => 'datetime', 'expression' => array( $DB->datetimeToDateFunction('%s'), 'DATE_INSERT' ) ), 'QUANTITY' => array( 'data_type' => 'float', 'required' => true, 'title' => Loc::getMessage('ORDER_DELIVERY_BASKET_ENTITY_QUANTITY_FIELD'), ), 'RESERVED_QUANTITY' => array( 'data_type' => 'float', 'required' => true, 'title' => Loc::getMessage('ORDER_DELIVERY_BASKET_ENTITY_RESERVED_QUANTITY_FIELD'), ), 'XML_ID' => array('data_type' => 'string'), ); } }