Merge branch 'ent-4635-8710-Monitor-Report-informes-muestra-el-dato-al-reves' into 'develop'

Fixed bug in item type monitor report

See merge request artica/pandorafms!2726
This commit is contained in:
Alejandro Fraguas 2019-09-17 09:48:15 +02:00
commit d9b697d076
1 changed files with 2 additions and 2 deletions

View File

@ -2532,7 +2532,7 @@ function reporting_html_monitor_report($table, $item, $mini, $pdf=0)
true
).' '.__('OK').': '.remove_right_zeros(
number_format(
$item['data']['ok']['formated_value'],
$item['data']['ok']['value'],
$config['graph_precision']
)
).' %</p>';
@ -2543,7 +2543,7 @@ function reporting_html_monitor_report($table, $item, $mini, $pdf=0)
true
).' '.__('Not OK').': '.remove_right_zeros(
number_format(
$item['data']['fail']['formated_value'],
$item['data']['fail']['value'],
$config['graph_precision']
)
).' % '.'</p>';