From fb5ecaeef412b89277c5d102164fc35c13f127d5 Mon Sep 17 00:00:00 2001 From: "alejandro.campos@artica.es" Date: Thu, 3 Jun 2021 13:49:10 +0200 Subject: [PATCH] minor fixes in report item --- pandora_console/include/functions_reporting.php | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/pandora_console/include/functions_reporting.php b/pandora_console/include/functions_reporting.php index a2ace0502a..73bd978dc9 100755 --- a/pandora_console/include/functions_reporting.php +++ b/pandora_console/include/functions_reporting.php @@ -2394,11 +2394,19 @@ function reporting_agents_inventory($report, $content) } if (array_search('estado', $es_agents_inventory_display_options) !== false) { - if (in_array('-1', $es_agent_status_filter) === true || in_array(agents_get_status($value['id_agente']), $es_agent_status_filter)) { - $agents[$key]['estado'] = agents_get_status($value['id_agente']); + if (in_array(6, $es_agent_status_filter)) { + if (agents_get_status($value['id_agente']) === 0) { + unset($agents[$key]); + } else { + $agents[$key]['estado'] = agents_get_status($value['id_agente']); + } } else { - // Agent does not match status filter. - unset($agents[$key]); + if (in_array('-1', $es_agent_status_filter) === true || in_array(agents_get_status($value['id_agente']), $es_agent_status_filter)) { + $agents[$key]['estado'] = agents_get_status($value['id_agente']); + } else { + // Agent does not match status filter. + unset($agents[$key]); + } } } }