• Модуль: crm
  • Путь к файлу: ~/bitrix/modules/crm/lib/invoice/internals/invoicechange.php
  • Класс: Bitrix\Crm\Invoice\Internals\InvoiceChangeTable
  • Вызов: InvoiceChangeTable::getMap
static function getMap()
{
	return array(
		'ID' => array(
			'data_type' => 'integer',
			'primary' => true,
			'autocomplete' => true
		),
		'ORDER_ID' => array(
			'data_type' => 'integer',
			'required'   => true
		),
		'TYPE' => array(
			'data_type' => 'string',
			'required'   => true
		),
		'DATA'  => array(
			'data_type' => 'string'
		),
		'DATE_CREATE'  => array(
			'data_type' => 'datetime',
			'default_value' => new Main\Type\DateTime(),
			'required'   => true
		),
		'DATE_MODIFY'  => array(
			'data_type' => 'datetime',
			'default_value' => new Main\Type\DateTime(),
			'required'   => true
		),
		'USER_ID'  => array(
			'data_type' => 'integer',
		),
		'ENTITY'  => array(
			'data_type' => 'string'
		),
		'ENTITY_ID'  => array(
			'data_type' => 'integer'
		),
	);
}