- Модуль: imopenlines
- Путь к файлу: ~/bitrix/modules/imopenlines/lib/integrations/report/statistics/entity/dialogstat.php
- Класс: BitrixImOpenLinesIntegrationsReportStatisticsEntityDialogStatTable
- Вызов: DialogStatTable::getMap
static function getMap()
{
return array(
new DateField('DATE', array('primary' => true)),
new IntegerField('OPEN_LINE_ID', array('primary' => true)),
new StringField('SOURCE_ID', array('primary' => true)),
new IntegerField('OPERATOR_ID', array('primary' => true)),
new IntegerField('ANSWERED_QTY'),
new IntegerField('SKIP_QTY'),
new IntegerField('APPOINTED_QTY'),
new IntegerField('AVERAGE_SECS_TO_ANSWER'),
new IntegerField('POSITIVE_QTY'),
new IntegerField('NEGATIVE_QTY'),
new IntegerField('WITHOUT_MARK_QTY'),
new ExpressionField('TOTAL_MARK_CNT', '(%s + %s + %s)', array('POSITIVE_QTY', 'NEGATIVE_QTY', 'WITHOUT_QTY')),
new IntegerField('FIRST_TREATMENT_QTY'),
new IntegerField('REPEATED_TREATMENT_QTY'),
new ExpressionField('TOTAL_TREATMENT_CNT', '(%s + %s)', array('FIRST_TREATMENT_QTY', 'REPEATED_TREATMENT_QTY')),
);
}