- Модуль: crm
- Путь к файлу: ~/bitrix/modules/crm/lib/statistics/entity/leadconversionstatistics.php
- Класс: Bitrix\Crm\Statistics\Entity\LeadConversionStatisticsTable
- Вызов: LeadConversionStatisticsTable::getMap
static function getMap()
{
return array(
'OWNER_ID' => array('data_type' => 'integer', 'required' => true, 'primary' => true),
'ENTRY_DATE' => array('data_type' => 'date', 'required' => true, 'primary' => true),
'CREATED_DATE' => array('data_type' => 'date'),
'RESPONSIBLE_ID' => array('data_type' => 'integer', 'required' => true),
'CONTACT_QTY' => array('data_type' => 'integer'),
'COMPANY_QTY' => array('data_type' => 'integer'),
'DEAL_QTY' => array('data_type' => 'integer'),
'TOTALS_DATE' => array('data_type' => 'date'),
'TOTALS' => array(
'data_type' => 'LeadSumStatistics',
'reference' => array(
'=this.OWNER_ID' => 'ref.OWNER_ID',
'=this.TOTALS_DATE' => 'ref.CREATED_DATE'
)
)
);
}