diff --git a/htdocs/compta/prelevement/factures.php b/htdocs/compta/prelevement/factures.php
index 378480ef0d2..cc416d7d530 100644
--- a/htdocs/compta/prelevement/factures.php
+++ b/htdocs/compta/prelevement/factures.php
@@ -334,6 +334,9 @@ if ($resql) {
if ($num > 0) {
print '
';
print '| '.$langs->trans("Total").' | ';
+ if ($object->type == 'bank-transfer') {
+ print ' | ';
+ }
print ' | ';
print '';
//if ($totalinvoices != $object->amount) print img_warning("AmountOfFileDiffersFromSumOfInvoices"); // It is normal to have total that differs. For an amount of invoice of 100, request to pay may be 50 only.
|