- Модуль: sale
- Путь к файлу: ~/bitrix/modules/sale/lib/discount/index/indexelement.php
- Класс: BitrixSaleDiscountIndexIndexElementTable
- Вызов: IndexElementTable::getMap
static function getMap()
{
return array(
'ID' => array(
'data_type' => 'integer',
'primary' => true,
'autocomplete' => true,
),
'DISCOUNT_ID' => array(
'data_type' => 'integer',
'required' => true,
),
'DISCOUNT' => array(
'data_type' => 'BitrixSaleInternalsDiscountTable',
'reference' => array(
'=this.DISCOUNT_ID' => 'ref.ID'
),
'join_type' => 'INNER',
),
'DISCOUNT_GROUP' => array(
'data_type' => 'BitrixSaleInternalsDiscountGroupTable',
'reference' => array(
'=this.DISCOUNT_ID' => 'ref.DISCOUNT_ID'
),
'join_type' => 'INNER',
),
'ELEMENT_ID' => array(
'data_type' => 'integer',
'required' => true,
),
);
}