diff --git a/htdocs/accountancy/bookkeeping/balance.php b/htdocs/accountancy/bookkeeping/balance.php
index fda67985883..da0dfda2510 100644
--- a/htdocs/accountancy/bookkeeping/balance.php
+++ b/htdocs/accountancy/bookkeeping/balance.php
@@ -253,8 +253,8 @@ else {
print '
';
// Permet d'afficher le compte comptable
- if ($root_account_description != $displayed_account) {
-
+ if (empty($displayed_account) || $root_account_description != $displayed_account)
+ {
// Affiche un Sous-Total par compte comptable
if ($displayed_account != "") {
print '
| ' . $langs->trans("SubTotal") . ': | ' . price($sous_total_debit) . ' | ' . price($sous_total_credit) . ' | ' . price($sous_total_credit - $sous_total_debit) . ' | ';
@@ -262,9 +262,9 @@ else {
print '
';
}
- // Affiche le compte comptable en d�but de ligne
+ // Affiche le compte comptable en debut de ligne
print "";
- print '| ' . $root_account_description . ' | ';
+ print '' . $line->numero_compte . ($root_account_description ? ' - ' . $root_account_description : '') . ' | ';
print '
';
$displayed_account = $root_account_description;