• Модуль: crm
  • Путь к файлу: ~/bitrix/modules/crm/classes/general/crm_report_helper.php
  • Класс: \CCrmProductReportHelper
  • Вызов: CCrmProductReportHelper::formatResultsTotal
static function formatResultsTotal(&$total, &$columnInfo, &$customChartTotal = null)
{
	parent::formatResultsTotal($total, $columnInfo);
	if(isset($total['TOTAL_CRM_PRODUCT_ROW_DEAL_OWNER_PROBABILITY']))
	{
		// Suppress PROBABILITY (%) aggregation
		unset($total['TOTAL_CRM_PRODUCT_ROW_DEAL_OWNER_PROBABILITY']);
	}
	if(isset($total['TOTAL_CRM_PRODUCT_ROW_DEAL_OWNER_WEBFORM_ID']))
	{
		// Suppress WEBFORM_ID aggregation
		unset($total['TOTAL_CRM_PRODUCT_ROW_DEAL_OWNER_WEBFORM_ID']);
	}
}