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/yandex.market/lib/salesboost/product/ |
Upload File : |
<?php namespace Yandex\Market\SalesBoost\Product; use Yandex\Market\Reference; use Yandex\Market\SalesBoost; use Yandex\Market\Export; use Bitrix\Main; use Bitrix\Iblock; class Table extends Reference\Storage\Table { public static function getTableName() { return 'yamarket_sales_boost_product'; } public static function getMap() { return [ new Main\Entity\IntegerField('ID', [ 'autocomplete' => true, 'primary' => true, ]), new Main\Entity\IntegerField('SETUP_ID'), new Main\Entity\ReferenceField('SETUP', SalesBoost\Setup\Table::class, [ '=this.SETUP_ID' => 'ref.ID', ]), new Main\Entity\IntegerField('IBLOCK_ID'), new Main\Entity\ReferenceField('IBLOCK', Iblock\Iblock::class, [ '=this.IBLOCK_ID' => 'ref.ID', ]), new Main\Entity\ReferenceField('FILTER', Export\Filter\Table::class, [ '=ref.ENTITY_TYPE' => [ '?', Export\Filter\Table::ENTITY_TYPE_SALES_BOOST ], '=ref.ENTITY_ID' => 'this.ID', ]), ]; } public static function getReference($primary = null) { return [ 'FILTER' => [ 'TABLE' => Export\Filter\Table::class, 'LINK_FIELD' => 'ENTITY_ID', 'LINK' => [ 'ENTITY_TYPE' => Export\Filter\Table::ENTITY_TYPE_SALES_BOOST, 'ENTITY_ID' => $primary, ], 'ORDER' => [ 'SORT' => 'asc', 'ID' => 'asc' ], ] ]; } }