parent
1ca35be41e
commit
36293cba3a
|
@ -271,35 +271,17 @@ function grafico_modulo_sparse_data_chart (
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
else{
|
else{
|
||||||
if($data_module_graph['id_module_type'] == 2 ||
|
$data = db_get_all_rows_filter (
|
||||||
$data_module_graph['id_module_type'] == 6 ||
|
'tagente_datos',
|
||||||
$data_module_graph['id_module_type'] == 18 ||
|
array ('id_agente_modulo' => (int)$agent_module_id,
|
||||||
$data_module_graph['id_module_type'] == 9){
|
"utimestamp > '". $date_array['start_date']. "'",
|
||||||
$data = db_get_all_rows_filter (
|
"utimestamp < '". $date_array['final_date'] . "'",
|
||||||
'tagente_datos',
|
'group' => "ROUND(utimestamp / $data_slice)",
|
||||||
array ('id_agente_modulo' => (int)$agent_module_id,
|
'order' => 'utimestamp ASC'),
|
||||||
"utimestamp > '". $date_array['start_date']. "'",
|
array ('sum(datos)/count(datos) as datos', 'min(utimestamp) as utimestamp'),
|
||||||
"utimestamp < '". $date_array['final_date'] . "'",
|
'AND',
|
||||||
'group' => "ROUND(utimestamp / $data_slice)",
|
$data_module_graph['history_db']
|
||||||
'order' => 'utimestamp ASC'),
|
);
|
||||||
array ('ROUND(sum(datos)/count(datos)) as datos', 'min(utimestamp) as utimestamp'),
|
|
||||||
'AND',
|
|
||||||
$data_module_graph['history_db']
|
|
||||||
);
|
|
||||||
}
|
|
||||||
else{
|
|
||||||
$data = db_get_all_rows_filter (
|
|
||||||
'tagente_datos',
|
|
||||||
array ('id_agente_modulo' => (int)$agent_module_id,
|
|
||||||
"utimestamp > '". $date_array['start_date']. "'",
|
|
||||||
"utimestamp < '". $date_array['final_date'] . "'",
|
|
||||||
'group' => "ROUND(utimestamp / $data_slice)",
|
|
||||||
'order' => 'utimestamp ASC'),
|
|
||||||
array ('sum(datos)/count(datos) as datos', 'min(utimestamp) as utimestamp'),
|
|
||||||
'AND',
|
|
||||||
$data_module_graph['history_db']
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue