- Модуль: crm
- Путь к файлу: ~/bitrix/modules/crm/lib/order/internals/shipmentrealizationtable.php
- Класс: Bitrix\Crm\Order\Internals\ShipmentRealizationTable
- Вызов: ShipmentRealizationTable::getMap
static function getMap()
{
return [
new IntegerField(
'ID',
[
'primary' => true,
'autocomplete' => true,
'title' => Loc::getMessage('SHIPMENT_REALIZATION_ENTITY_ID_FIELD'),
]
),
new IntegerField(
'SHIPMENT_ID',
[
'required' => true,
'title' => Loc::getMessage('SHIPMENT_REALIZATION_ENTITY_SHIPMENT_ID_FIELD'),
]
),
new BooleanField(
'IS_REALIZATION',
[
'values' => array('N', 'Y'),
'default' => 'Y',
'title' => Loc::getMessage('SHIPMENT_REALIZATION_ENTITY_IS_REALIZATION_FIELD'),
]
),
];
}