- Модуль: voximplant
- Путь к файлу: ~/bitrix/modules/voximplant/lib/integration/report/handler/base.php
- Класс: BitrixVoximplantIntegrationReportHandlerBase
- Вызов: Base::addCallTypeCompareField
protected function addCallTypeCompareField(Query $query, string $columnName): void
{
$query->addSelect($columnName . '_COMPARE');
$query->registerRuntimeField(new ExpressionField(
$columnName . '_COMPARE',
'if(%s = 0, null, round((%s - %s) / %s * 100, 1))',
[$columnName, $columnName, 'previous.' . $columnName, 'previous.' . $columnName]
));
}