From 0de4e225fb702681d7e9d19ecda1c1da170a357e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment?= <142790847+clementgde@users.noreply.github.com> Date: Thu, 15 May 2025 18:10:12 +0200 Subject: [PATCH] QUAL harmonization between statistical sections (#34160) * QUAL Color harmonization between statistical sections * Update index.php --- htdocs/ticket/stats/index.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/htdocs/ticket/stats/index.php b/htdocs/ticket/stats/index.php index f020f29bf15..3e506311658 100644 --- a/htdocs/ticket/stats/index.php +++ b/htdocs/ticket/stats/index.php @@ -209,7 +209,7 @@ print '
| '.$langs->trans("Year").' | '; print ''.$langs->trans("NbOfTickets").' | '; -print '% | '; +print '% | '; //print ''.$langs->trans("AmountTotal").' | '; //print '% | '; //print ''.$langs->trans("AmountAverage").' | '; @@ -237,7 +237,7 @@ foreach ($data as $val) { print '
| 0 ? '&socid='.$socid : '').($userid > 0 ? '&userid='.$userid : '').'">'.$year.' | '; print ''.$val['nb'].' | '; - print ''.round(isset($val['nb_diff']) ? $val['nb_diff'] : 0).' | '; + print ''.round(isset($val['nb_diff']) ? $val['nb_diff'] : 0).'% | '; //print ''.price(price2num($val['total'], 'MT'), 1).' | '; //print ''.round($val['total_diff']).' | '; //print ''.price(price2num($val['avg'], 'MT'), 1).' | ';