wip reports alert actions
This commit is contained in:
parent
be5fe18762
commit
cb0039d7a7
|
@ -1772,18 +1772,24 @@ $class = 'databox filters';
|
|||
$all_modules = '';
|
||||
} else {
|
||||
$all_modules = db_get_all_rows_sql(
|
||||
'SELECT DISTINCT nombre, id_agente_modulo FROM
|
||||
tagente_modulo WHERE id_agente IN ('.implode(',', array_values($id_agents)).')'
|
||||
sprintf(
|
||||
'SELECT nombre, id_agente_modulo
|
||||
FROM tagente_modulo
|
||||
WHERE id_agente IN (%s)',
|
||||
implode(',', array_values($id_agents))
|
||||
)
|
||||
);
|
||||
}
|
||||
|
||||
if ((empty($all_modules)) || $all_modules == -1) {
|
||||
if (empty($all_modules) === 1 || $all_modules == -1) {
|
||||
$all_modules = [];
|
||||
}
|
||||
|
||||
$modules_select = [];
|
||||
$all_modules_structured = [];
|
||||
if (is_array($idAgentModule) || is_object($idAgentModule)) {
|
||||
if (is_array($idAgentModule) === true
|
||||
|| is_object($idAgentModule) === true
|
||||
) {
|
||||
foreach ($all_modules as $key => $a) {
|
||||
foreach ($idAgentModule as $id) {
|
||||
if ((int) $a['id_agente_modulo'] === (int) $id) {
|
||||
|
|
|
@ -310,7 +310,7 @@ if (is_ajax()) {
|
|||
|
||||
echo json_encode($modules);
|
||||
} else {
|
||||
select_modules_for_agent_group($id_group, $id_agents, $selection);
|
||||
select_modules_for_agent_group($id_group, $id_agents, $selection, false);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue