diff --git a/htdocs/compta/recap-client.php b/htdocs/compta/recap-client.php
index 4b51e1458ee..cb87fcfb7d6 100644
--- a/htdocs/compta/recap-client.php
+++ b/htdocs/compta/recap-client.php
@@ -181,7 +181,7 @@ if ($socid > 0)
print '
| ';
print ''.$langs->trans("Debit").' | ';
print ''.$langs->trans("Credit").' | ';
- print ''.$langs->trans("Solde").' | ';
+ print ''.$langs->trans("Balance").' | ';
print '';
}
else
@@ -218,11 +218,11 @@ if ($socid > 0)
print "".dolibarr_print_date($fac->date)." | \n";
print "id\">".img_object($langs->trans("ShowBill"),"bill")." ".$fac->ref." | \n";
- print ''.number_format($fac->total_ttc, 2, ',', ' ')." | \n";
+ print ''.price($fac->total_ttc)." | \n";
$solde = $solde + $fac->total_ttc;
print ' | ';
- print ''.number_format($solde, 2, ',', ' ')." | \n";
+ print ''.price($solde)." | \n";
print "\n";
// Paiements
@@ -249,7 +249,7 @@ if ($socid > 0)
print " | \n";
print ''.price($objp->amount).' | ';
$solde = $solde - $objp->amount;
- print ''.number_format($solde, 2, ',', ' ')." | \n";
+ print ''.price($solde)." | \n";
print '';
$j++;