Merge branch 'ent-8114-12553-Falla-la-macro-moduledata-X-cuando-no-tienes-activo-el-historico-en-el-modulo' into 'develop'
Ent 8114 12553 falla la macro moduledata x cuando no tienes activo el historico en el modulo See merge request artica/pandorafms!4486
This commit is contained in:
commit
0e16c93c73
|
@ -4527,17 +4527,18 @@ sub on_demand_macro($$$$$$;$) {
|
|||
my $field_number = $1;
|
||||
|
||||
my $id_mod = get_db_value ($dbh, 'SELECT id_agente_modulo FROM tagente_modulo WHERE id_agente = ? AND nombre = ?', $module->{'id_agente'}, $field_number);
|
||||
my $type_mod = get_db_value ($dbh, 'SELECT id_tipo_modulo FROM tagente_modulo WHERE id_agente_modulo = ?', $id_mod);
|
||||
my $unit_mod = get_db_value ($dbh, 'SELECT unit FROM tagente_modulo WHERE id_agente_modulo = ?', $id_mod);
|
||||
my $module_data = get_db_single_row ($dbh, 'SELECT id_tipo_modulo, unit FROM tagente_modulo WHERE id_agente_modulo = ?', $id_mod);
|
||||
my $type_mod = $module_data->{'id_tipo_modulo'};
|
||||
my $unit_mod = $module_data->{'unit'};
|
||||
|
||||
my $field_value = "";
|
||||
if (defined($type_mod)
|
||||
&& ($type_mod eq 3 || $type_mod eq 23|| $type_mod eq 17 || $type_mod eq 10 || $type_mod eq 33 )
|
||||
&& ($type_mod eq 3 || $type_mod eq 10 || $type_mod eq 17 || $type_mod eq 23 || $type_mod eq 33 || $type_mod eq 36)
|
||||
) {
|
||||
$field_value = get_db_value($dbh, 'SELECT datos FROM tagente_datos_string where id_agente_modulo = ? order by utimestamp desc limit 1', $id_mod);
|
||||
$field_value = get_db_value($dbh, 'SELECT datos FROM tagente_estado WHERE id_agente_modulo = ?', $id_mod);
|
||||
}
|
||||
else{
|
||||
$field_value = get_db_value($dbh, 'SELECT datos FROM tagente_datos where id_agente_modulo = ? order by utimestamp desc limit 1', $id_mod);
|
||||
$field_value = get_db_value($dbh, 'SELECT datos FROM tagente_estado WHERE id_agente_modulo = ?', $id_mod);
|
||||
|
||||
my $data_precision = $pa_config->{'graph_precision'};
|
||||
$field_value = sprintf("%.$data_precision" . "f", $field_value);
|
||||
|
|
Loading…
Reference in New Issue