From b29cb7b302ffb79dd95acc0543d996c0aec17150 Mon Sep 17 00:00:00 2001 From: Dany De Bontridder Date: Tue, 17 Jul 2018 11:34:25 +0200 Subject: [PATCH] =?UTF-8?q?Task=20#1589=20-=20Probl=C3=A8me=20affichage=20?= =?UTF-8?q?du=20total=20en=20CA=20#0001589:=20Probl=C3=A8me=20affichage=20?= =?UTF-8?q?du=20total=20en=20CA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- include/class/anc_acc_list.class.php | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) diff --git a/include/class/anc_acc_list.class.php b/include/class/anc_acc_list.class.php index 5aa6fa82e..7ac6acf27 100644 --- a/include/class/anc_acc_list.class.php +++ b/include/class/anc_acc_list.class.php @@ -319,6 +319,13 @@ order by $r.= ''; return $r; } + /** + * Display the result of accountancy and analytic , + * Axis / Card + * Card / Axis + * Accounting / Axis + * Axis / Accounting + */ function display_html() { bcscale(2); @@ -377,7 +384,7 @@ order by echo ''; echo ''; - echo '

'._("Résultat global").nbm($tot_glob).'

'; + echo '

'._("Résultat global")." ".nbm($tot_glob).'

'; } //--------------------------------------------------------------------------- // Accountancy - Analytic @@ -430,7 +437,7 @@ order by echo ''; echo ''; - echo td(nbm($tot_card),' class="num"'); + echo '

'._("Résultat global")." ".nbm($tot_glob).'

'; } //--------------------------------------------------------------------------- // Acc after card @@ -482,7 +489,7 @@ order by echo ''; echo ''; - echo td(nbm($tot_card),' class="num"'); + echo '

'._("Résultat global")." ".nbm($tot_glob).'

'; } //--------------------------------------------------------------------------- // Analytic - Accountancy @@ -536,7 +543,7 @@ order by echo ''; echo ''; - echo '

Résultat global '.nbm($tot_glob).'

'; + echo '

'._("Résultat global")." ".nbm($tot_glob).'

'; } }