• Модуль: crm
  • Путь к файлу: ~/bitrix/modules/crm/lib/binding/dealcontact.php
  • Класс: Bitrix\Crm\Binding\DealContactTable
  • Вызов: DealContactTable::getMap
static function getMap()
{
	return array(
		'DEAL_ID' => array('primary' => true, 'data_type' => 'integer'),
		'CONTACT_ID' => array('primary' => true, 'data_type' => 'integer'),
		'SORT' => array('data_type' => 'integer', 'default_value' => 0),
		'ROLE_ID' => array('data_type' => 'integer', 'default_value' => 0),
		'IS_PRIMARY' => array('data_type' => 'boolean', 'values' => array('N', 'Y'), 'default_value' => 'N'),
		(new Reference('DEAL', DealTable::class, Join::on('this.DEAL_ID', 'ref.ID'))),
	);
}