ContactActivityStatusStatisticsTable::getMap

  1. Bitrix24 API (v. 23.675.0)
  2. crm
  3. ContactActivityStatusStatisticsTable
  4. getMap
  • Модуль: crm
  • Путь к файлу: ~/bitrix/modules/crm/lib/statistics/entity/contactactivitystatusstatistics.php
  • Класс: Bitrix\Crm\Statistics\Entity\ContactActivityStatusStatisticsTable
  • Вызов: ContactActivityStatusStatisticsTable::getMap
static function getMap()
{
	return array(
		'OWNER_ID' => array('data_type' => 'integer', 'required' => true, 'primary' => true),
		'DEADLINE_DATE' => array('data_type' => 'date', 'required' => true, 'primary' => true),
		'PROVIDER_ID' => array('data_type' => 'string', 'primary' => true),
		'PROVIDER_TYPE_ID' => array('data_type' => 'string', 'primary' => true),
		
		'RESPONSIBLE_ID' => array('data_type' => 'integer'),
		'ANSWERED_QTY' => array('data_type' => 'integer'),
		'UNANSWERED_QTY' => array('data_type' => 'integer'),
		'TOTAL' => array(
			'data_type' => 'integer',
			'expression' => array( '(%s + %s)', 'ANSWERED_QTY', 'UNANSWERED_QTY')
		),
	);
}

Добавить комментарий