• Модуль: sale
  • Путь к файлу: ~/bitrix/modules/sale/lib/internals/orderdeliveryreq.php
  • Класс: BitrixSaleInternalsOrderDeliveryReqTable
  • Вызов: OrderDeliveryReqTable::getMap
static function getMap()
{
	return array(
		'ID' => array(
			'data_type' => 'integer',
			'primary' => true,
			'autocomplete' => true,
			'title' => MainLocalizationLoc::getMessage('ORDERDELIVERY_ENTITY_ID_FIELD'),
		),
		'ORDER_ID' => array(
			'data_type' => 'integer',
			'required' => true,
			'title' => MainLocalizationLoc::getMessage('ORDERDELIVERY_ENTITY_ORDER_ID_FIELD'),
		),
		'DELIVERY_LOCATION' => array(
			'data_type' => 'string',
			'validation' => array(__CLASS__, 'validateLocation'),
			'title' => MainLocalizationLoc::getMessage('ORDERDELIVERY_ENTITY_HID_FIELD'),
		),
		'DATE_REQUEST' => array(
			'data_type' => 'datetime',
			'title' => MainLocalizationLoc::getMessage('ORDERDELIVERY_ENTITY_DATE_REQUEST_FIELD'),
		),
		'PARAMS' => array(
			'data_type' => 'text',
			'serialized' => true,
			'title' => MainLocalizationLoc::getMessage('ORDERDELIVERY_ENTITY_PARAMS_FIELD'),
		),
		'SHIPMENT_ID' => array(
			'data_type' => 'integer',
			'title' => MainLocalizationLoc::getMessage('ORDERDELIVERY_ENTITY_SHIPMENT_ID_FIELD'),
		)
	);
}