2012-07-16 Dario Rodriguez <dario.rodriguez@artica.es>
* operation/tree.php: Fixed a bug which shows agents with not init modules when they must be hidde. git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6779 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
parent
b3242413f1
commit
cbad3c3f7a
|
@ -1,3 +1,8 @@
|
|||
2012-07-16 Dario Rodriguez <dario.rodriguez@artica.es>
|
||||
|
||||
* operation/tree.php: Fixed a bug which shows agents with
|
||||
not init modules when they must be hidde.
|
||||
|
||||
2012-07-16 Juan Manuel Ramon <juanmanuel.ramon@artica.es>
|
||||
|
||||
* include/constants.php
|
||||
|
|
|
@ -258,6 +258,11 @@ if (is_ajax ())
|
|||
switch ($type) {
|
||||
case 'group':
|
||||
|
||||
//Skip agents which only have not init modules
|
||||
|
||||
$search_sql .= " AND id_agente NOT IN (SELECT tagente_estado.id_agente FROM
|
||||
tagente_estado GROUP BY id_agente HAVING SUM(utimestamp) = 0)";
|
||||
|
||||
$sql = agents_get_agents(array (
|
||||
'order' => 'nombre COLLATE utf8_general_ci ASC',
|
||||
'id_grupo' => $id,
|
||||
|
@ -272,6 +277,13 @@ if (is_ajax ())
|
|||
|
||||
break;
|
||||
case 'os':
|
||||
|
||||
//Skip agents which only have not init modules
|
||||
|
||||
$search_sql .= " AND id_agente NOT IN (SELECT tagente_estado.id_agente FROM
|
||||
tagente_estado GROUP BY id_agente HAVING SUM(utimestamp) = 0)";
|
||||
|
||||
|
||||
$sql = agents_get_agents(array (
|
||||
'order' => 'nombre COLLATE utf8_general_ci ASC',
|
||||
'id_os' => $id,
|
||||
|
@ -287,6 +299,14 @@ if (is_ajax ())
|
|||
break;
|
||||
case 'module_group':
|
||||
|
||||
//Skip agents which only have not init modules
|
||||
|
||||
$search_sql .= " AND id_agente NOT IN (SELECT tagente_estado.id_agente FROM tagente_estado
|
||||
WHERE id_agente_modulo IN
|
||||
(SELECT id_agente_modulo FROM tagente_modulo
|
||||
WHERE id_module_group = $id)
|
||||
GROUP BY id_agente HAVING SUM(utimestamp) = 0)";
|
||||
|
||||
$sql = agents_get_agents(array (
|
||||
'order' => 'nombre COLLATE utf8_general_ci ASC',
|
||||
'disabled' => 0,
|
||||
|
@ -879,6 +899,11 @@ function printTree_($type) {
|
|||
default:
|
||||
case 'os':
|
||||
|
||||
//Skip agent with all modules in not init status
|
||||
|
||||
$sql_search .= " AND id_agente NOT IN (SELECT tagente_estado.id_agente FROM
|
||||
tagente_estado GROUP BY id_agente HAVING SUM(utimestamp) = 0)";
|
||||
|
||||
$sql = agents_get_agents(array (
|
||||
'order' => 'nombre COLLATE utf8_general_ci ASC',
|
||||
'disabled' => 0,
|
||||
|
@ -918,6 +943,11 @@ function printTree_($type) {
|
|||
|
||||
case 'module_group':
|
||||
|
||||
//Skip agents which only have not init modules
|
||||
|
||||
$sql_search .= " AND id_agente NOT IN (SELECT tagente_estado.id_agente FROM
|
||||
tagente_estado GROUP BY id_agente HAVING SUM(utimestamp) = 0)";
|
||||
|
||||
$sql = agents_get_agents(array (
|
||||
'order' => 'nombre COLLATE utf8_general_ci ASC',
|
||||
'disabled' => 0,
|
||||
|
@ -1032,6 +1062,7 @@ function printTree_($type) {
|
|||
|
||||
$first = true;
|
||||
foreach ($list as $item) {
|
||||
|
||||
$iconImg = '';
|
||||
switch ($type) {
|
||||
default:
|
||||
|
|
Loading…
Reference in New Issue