• Модуль: crm
  • Путь к файлу: ~/bitrix/modules/crm/classes/general/crm_report_helper.php
  • Класс: \CCrmActivityReportHelper
  • Вызов: CCrmActivityReportHelper::formatResultsTotal
static function formatResultsTotal(&$total, &$columnInfo, &$customChartTotal = null)
{
	parent::formatResultsTotal($total, $columnInfo);

	// Suppress total values
	if(isset($total['TOTAL_TYPE_ID']))
	{
		unset($total['TOTAL_TYPE_ID']);
	}
	if(isset($total['TOTAL_DIRECTION']))
	{
		unset($total['TOTAL_DIRECTION']);
	}
	if(isset($total['TOTAL_PRIORITY']))
	{
		unset($total['TOTAL_PRIORITY']);
	}
}