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/rospirotorg.ru/bitrix/modules/sale/lib/cashbox/internals/ |
Upload File : |
<?php namespace Bitrix\Sale\Cashbox\Internals; use Bitrix\Main\Entity\DataManager; /** * Class CashboxCheckTable * * DO NOT WRITE ANYTHING BELOW THIS * * <<< ORMENTITYANNOTATION * @method static EO_CashboxCheck_Query query() * @method static EO_CashboxCheck_Result getByPrimary($primary, array $parameters = []) * @method static EO_CashboxCheck_Result getById($id) * @method static EO_CashboxCheck_Result getList(array $parameters = []) * @method static EO_CashboxCheck_Entity getEntity() * @method static \Bitrix\Sale\Cashbox\Internals\EO_CashboxCheck createObject($setDefaultValues = true) * @method static \Bitrix\Sale\Cashbox\Internals\EO_CashboxCheck_Collection createCollection() * @method static \Bitrix\Sale\Cashbox\Internals\EO_CashboxCheck wakeUpObject($row) * @method static \Bitrix\Sale\Cashbox\Internals\EO_CashboxCheck_Collection wakeUpCollection($rows) */ class CashboxCheckTable extends DataManager { public static function getTableName() { return 'b_sale_cashbox_check'; } public static function getMap() { return array( 'ID' => array( 'primary' => true, 'autocomplete' => true, 'autoincrement' => true, 'data_type' => 'integer', ), 'PAYMENT_ID' => array( 'data_type' => 'integer', ), 'PAYMENT' => array( 'data_type' => 'Bitrix\Sale\Internals\PaymentTable', 'reference' => array( '=this.PAYMENT_ID' => 'ref.ID' ) ), 'SHIPMENT_ID' => array( 'data_type' => 'integer', ), 'ORDER_ID' => array( 'data_type' => 'integer', ), 'EXTERNAL_UUID' => array( 'data_type' => 'string', ), 'CASHBOX_ID' => array( 'data_type' => 'integer', ), 'CNT_FAIL_PRINT' => array( 'data_type' => 'integer', 'default' => 0 ), 'CASHBOX' => array( 'data_type' => 'Bitrix\Sale\Cashbox\Internals\CashboxTable', 'reference' => array( '=this.CASHBOX_ID' => 'ref.ID' ) ), 'DATE_CREATE' => array( 'data_type' => 'datetime', 'required' => true ), 'DATE_PRINT_START' => array( 'data_type' => 'datetime', ), 'DATE_PRINT_END' => array( 'data_type' => 'datetime', ), 'SUM' => array( 'data_type' => 'float', ), 'CURRENCY' => array( 'data_type' => 'string', ), 'LINK_PARAMS' => array( 'data_type' => 'string', 'serialized' => true ), 'TYPE' => array( 'data_type' => 'string', 'required' => true ), 'STATUS' => array( 'data_type' => 'string', ), 'CHECK2CASHBOX' => array( 'data_type' => 'Bitrix\Sale\Cashbox\Internals\Check2CashboxTable', 'reference' => array( '=this.ID' => 'ref.CHECK_ID' ), 'join_type' => 'INNER' ), 'ENTITY_REGISTRY_TYPE' => array( 'data_type' => 'string', 'required' => true ), 'ERROR_MESSAGE' => array( 'data_type' => 'text', ), ); } }