Merge branch 'ent-13389-resultado-de-algunos-items-de-reporte-muestran-grupo-y-tiempo-de-los-datos-desalineados-y-sin' into 'develop'
Ent 13389 resultado de algunos items de reporte muestran grupo y tiempo de los datos desalineados y sin See merge request artica/pandorafms!7202
This commit is contained in:
commit
7a78283eed
|
@ -112,8 +112,8 @@ function reporting_html_header(
|
|||
}
|
||||
|
||||
$data[] = $title.$sizhfin;
|
||||
$data[] = $sizh.$subtitle.$sizhfin;
|
||||
$data[] = "<div class='right'>".$sizh.$date_text.$sizhfin.'</div>';
|
||||
$data[] = $sizh.__('Group').': '.$subtitle.$sizhfin;
|
||||
$data[] = '<div class="flex-content-right flex-items-center">'.$sizh.__('Data time').': '.$sizhfin."<div class='right mrgn_lft_15px'>".$sizh.$date_text.$sizhfin.'</div></div>';
|
||||
}
|
||||
|
||||
array_push($table->data, $data);
|
||||
|
@ -194,6 +194,9 @@ function reporting_html_print_report($report, $mini=false, $report_info=1, $cust
|
|||
$table->head = [];
|
||||
$table->colspan = [];
|
||||
$table->rowstyle = ['background-color: #686868'];
|
||||
$table->size[0] = '33%';
|
||||
$table->size[1] = '33%';
|
||||
$table->size[2] = '33%';
|
||||
|
||||
if (isset($item['label']) && $item['label'] != '') {
|
||||
$id_agent = $item['id_agent'];
|
||||
|
@ -3606,7 +3609,7 @@ function reporting_html_group_report($table, $item, $pdf=0)
|
|||
}
|
||||
|
||||
$graph_width = 280;
|
||||
$graph_height = 250;
|
||||
$graph_height = 300;
|
||||
|
||||
$out = '<table width="100%" class="info_table">';
|
||||
$out .= '<tbody>';
|
||||
|
@ -3688,7 +3691,7 @@ function reporting_html_group_report($table, $item, $pdf=0)
|
|||
|
||||
$out .= '<div id="events_per_agent_pie" style="height: '.$graph_height.'px">';
|
||||
if ((int) $ttl === 2) {
|
||||
$out .= '<img src="data:image/png;base64,';
|
||||
$out .= '<img width="350" src="data:image/png;base64,';
|
||||
} else {
|
||||
$out .= '<div id="status_pie" style="margin: auto;">';
|
||||
}
|
||||
|
@ -3730,7 +3733,7 @@ function reporting_html_group_report($table, $item, $pdf=0)
|
|||
|
||||
$out .= '<div id="group_os_pie" style="height: '.$graph_height.'px">';
|
||||
if ((int) $ttl === 2) {
|
||||
$out .= '<img src="data:image/png;base64,';
|
||||
$out .= '<img width="350" src="data:image/png;base64,';
|
||||
} else {
|
||||
$out .= '<div id="status_pie" style="margin: auto;">';
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue