diff --git a/htdocs/compta/resultat/clientfourn.php b/htdocs/compta/resultat/clientfourn.php
index 8cfa0f3dd73..013c2fdb3e6 100644
--- a/htdocs/compta/resultat/clientfourn.php
+++ b/htdocs/compta/resultat/clientfourn.php
@@ -312,7 +312,7 @@ if ($modecompta == 'BOOKKEEPING') {
if ($showaccountdetail == 'no') {
if ($objp->pcg_type != $oldpcgtype) {
- print '
| '.$objp->pcg_type.' |
';
+ print '| '.$objp->pcg_type.' |
';
$oldpcgtype = $objp->pcg_type;
}
}
@@ -324,12 +324,13 @@ if ($modecompta == 'BOOKKEEPING') {
print $objp->pcg_type;
print ($objp->name ? ' ('.$objp->name.')' : ' ('.$langs->trans("Unknown").')');
print "\n";
+ print ''.price($objp->amount)." | \n";
} else {
- print '';
+ print ' | ';
print $objp->pcg_type;
print " | \n";
+ print ''.price($objp->amount)." | \n";
}
- print ''.price($objp->amount)." | \n";
print "\n";
$total_ht += (isset($objp->amount) ? $objp->amount : 0);