Merge branch 'ent-13597-resultado-de-item-grouped-exception-en-templates-no-da-valores-en-operacion-sum' into 'develop'

Ent 13597 resultado de item grouped exception en templates no da valores en operacion sum

See merge request 
This commit is contained in:
Matias Didier 2024-05-14 15:58:07 +00:00
commit 6e292f2656

@ -4142,6 +4142,13 @@ function reporting_exception(
);
break;
case 'sum':
$min = reporting_get_agentmodule_data_sum(
$exceptions[$i]['id_agent_module'],
$content['period']
);
break;
default:
// Default.
break;
@ -4193,6 +4200,10 @@ function reporting_exception(
case 'min':
$value = reporting_get_agentmodule_data_min($exc['id_agent_module'], $content['period']);
break;
case 'sum':
$value = reporting_get_agentmodule_data_sum($exc['id_agent_module'], $content['period']);
break;
}
}