diff --git a/htdocs/compta/stats/index.php b/htdocs/compta/stats/index.php index f1e5c241ab0..ea3bdabd93d 100644 --- a/htdocs/compta/stats/index.php +++ b/htdocs/compta/stats/index.php @@ -336,7 +336,13 @@ for ($annee = $year_start; $annee <= $year_end; $annee++) { if ($modecompta == 'CREANCES-DETTES') { print ''.$langs->trans("AmountHT").''; } - print ''.$langs->trans("AmountTTC").''; + print ''; + if ($modecompta == "BOOKKEEPING") { + print $langs->trans("Amount"); + } else { + print $langs->trans("AmountTTC"); + } + print ''; print ''.$langs->trans("Delta").''; if ($annee != $year_end) { print ' '; diff --git a/htdocs/compta/stats/supplier_turnover.php b/htdocs/compta/stats/supplier_turnover.php index 6beba492fb5..bb341c6a3a5 100644 --- a/htdocs/compta/stats/supplier_turnover.php +++ b/htdocs/compta/stats/supplier_turnover.php @@ -272,7 +272,13 @@ for ($annee = $year_start; $annee <= $year_end; $annee++) { if ($modecompta == 'CREANCES-DETTES') { print ''.$langs->trans("AmountHT").''; } - print ''.$langs->trans("AmountTTC").''; + print ''; + if ($modecompta == "BOOKKEEPING") { + print $langs->trans("Amount"); + } else { + print $langs->trans("AmountTTC"); + } + print ''; print ''.$langs->trans("Delta").''; if ($annee != $year_end) { print ' ';