• Модуль: crm
  • Путь к файлу: ~/bitrix/modules/crm/lib/automation/qr/qr.php
  • Класс: Bitrix\Crm\Automation\QR\QrTable
  • Вызов: QrTable::getMap
static function getMap()
{
	return [
		'ID' => [
			'primary' => true,
			'data_type' => 'string',
			'default_value' => function()
			{
				return str_replace('.' ,'', uniqid('', true));
			},
		],
		'OWNER_ID' => ['data_type' => 'string'],
		'ENTITY_TYPE_ID' => ['data_type' => 'integer'],
		'ENTITY_ID' => ['data_type' => 'integer'],
		'DESCRIPTION' => ['data_type' => 'string'],
		'COMPLETE_ACTION_LABEL' => ['data_type' => 'string'],
	];
}