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/yandex.market/lib/catalog/run/storage/ |
Upload File : |
<?php namespace Yandex\Market\Catalog\Run\Storage; use Bitrix\Main; use Yandex\Market\Reference; class OfferTable extends Reference\Storage\Table { const STATUS_SUCCESS = 'S'; const STATUS_DUPLICATE = 'C'; const STATUS_ERROR = 'E'; const STATUS_DELETE = 'D'; public static function getTableName() { return 'yamarket_catalog_run_offer'; } public static function createIndexes(Main\DB\Connection $connection) { $tableName = static::getTableName(); $connection->createIndex($tableName, 'IX_' . $tableName . '_1', [ 'SKU' ]); $connection->createIndex($tableName, 'IX_' . $tableName . '_2', [ 'STATUS' ]); $connection->createIndex($tableName, 'IX_' . $tableName . '_3', [ 'TIMESTAMP_X' ]); $connection->createIndex($tableName, 'IX_' . $tableName . '_4', [ 'PARENT_ID' ]); } public static function getMap() { return [ new Main\Entity\IntegerField('CATALOG_ID', [ 'primary' => true, ]), new Main\Entity\IntegerField('ELEMENT_ID', [ 'primary' => true, ]), new Main\Entity\IntegerField('PARENT_ID', [ 'default_value' => 0, ]), new Main\Entity\StringField('SKU', [ 'nullable' => true, 'validation' => function() { return [ new Main\Entity\Validator\Length(null, 255) ]; }, ]), new Main\Entity\EnumField('STATUS', [ 'required' => true, 'values' => [ static::STATUS_SUCCESS, static::STATUS_DUPLICATE, static::STATUS_ERROR, static::STATUS_DELETE, ], ]), new Reference\Storage\Field\CanonicalDateTime('TIMESTAMP_X', [ 'required' => true, ]), new Main\Entity\ReferenceField('ASSORTMENT', AssortmentTable::class, [ '=this.CATALOG_ID' => 'ref.CATALOG_ID', '=this.ELEMENT_ID' => 'ref.ELEMENT_ID', ]), ]; } }