diff --git a/htdocs/compta/prelevement/factures.php b/htdocs/compta/prelevement/factures.php
index 2d582c7a6a6..83ac9a3483b 100644
--- a/htdocs/compta/prelevement/factures.php
+++ b/htdocs/compta/prelevement/factures.php
@@ -205,8 +205,8 @@ if ($result)
print '
';
print_liste_field_titre("Bill", $_SERVER["PHP_SELF"], "p.ref", '', $param, '', $sortfield, $sortorder);
print_liste_field_titre("ThirdParty", $_SERVER["PHP_SELF"], "s.nom", '', $param, '', $sortfield, $sortorder);
- print_liste_field_titre("AmountInvoice", $_SERVER["PHP_SELF"], "f.total_ttc", "", $param, 'align="right"', $sortfield, $sortorder);
- print_liste_field_titre("AmountRequested", $_SERVER["PHP_SELF"], "pl.amount", "", $param, 'align="right"', $sortfield, $sortorder);
+ print_liste_field_titre("AmountInvoice", $_SERVER["PHP_SELF"], "f.total_ttc", "", $param, 'class="right"', $sortfield, $sortorder);
+ print_liste_field_titre("AmountRequested", $_SERVER["PHP_SELF"], "pl.amount", "", $param, 'class="right"', $sortfield, $sortorder);
print_liste_field_titre("StatusDebitCredit", $_SERVER["PHP_SELF"], "", "", $param, 'align="center"', $sortfield, $sortorder);
print_liste_field_titre('');
print "
\n";
@@ -235,10 +235,10 @@ if ($result)
print "\n";
// Amount of invoice
- print ''.price($obj->total_ttc)." | \n";
+ print ''.price($obj->total_ttc)." | \n";
// Amount requested
- print ''.price($obj->amount_requested)." | \n";
+ print ''.price($obj->amount_requested)." | \n";
// Status of requests
print '';
@@ -273,11 +273,11 @@ if ($result)
print ' | ';
print '| '.$langs->trans("Total").' | ';
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.
if ($totalamount_requested != $object->amount) print img_warning("AmountOfFileDiffersFromSumOfInvoices");
print " | \n";
- print '';
+ print ' | ';
print price($totalamount_requested);
print " | \n";
print ' | ';
diff --git a/htdocs/compta/prelevement/fiche-rejet.php b/htdocs/compta/prelevement/fiche-rejet.php
index a2b6d0db965..c930db99012 100644
--- a/htdocs/compta/prelevement/fiche-rejet.php
+++ b/htdocs/compta/prelevement/fiche-rejet.php
@@ -189,8 +189,8 @@ if ($resql)
print ''; // You can use div-table-responsive-no-min if you dont need reserved height for your table
print '
';
print '';
- print '| '.$langs->trans("Line").' | '.$langs->trans("ThirdParty").' | '.$langs->trans("Amount").' | ';
- print ''.$langs->trans("Reason").' | '.$langs->trans("ToBill").' | '.$langs->trans("Invoice").' |
';
+ print ''.$langs->trans("Line").' | '.$langs->trans("ThirdParty").' | '.$langs->trans("Amount").' | ';
+ print ''.$langs->trans("Reason").' | '.$langs->trans("ToBill").' | '.$langs->trans("Invoice").' | ';
$total = 0;
@@ -209,7 +209,7 @@ if ($resql)
print '';
print ''.$obj->name." | \n";
- print ''.price($obj->amount)." | \n";
+ print ''.price($obj->amount)." | \n";
print ''.$rej->motifs[$obj->motif].' | ';
print ''.yn($obj->afacturer).' | ';
@@ -230,7 +230,7 @@ if ($resql)
{
print '| | ';
print ''.$langs->trans("Total").' | ';
- print ''.price($total)." | \n";
+ print ''.price($total)." | \n";
print ' | ';
print "
\n";
}
diff --git a/htdocs/compta/prelevement/fiche-stat.php b/htdocs/compta/prelevement/fiche-stat.php
index 5cacc6c5856..9cee7938737 100644
--- a/htdocs/compta/prelevement/fiche-stat.php
+++ b/htdocs/compta/prelevement/fiche-stat.php
@@ -160,7 +160,7 @@ if ($prev_id > 0 || $ref)
print"\n\n";
print '';
print '';
- print '| '.$langs->trans("Status").' | '.$langs->trans("Amount").' | % |
';
+ print ''.$langs->trans("Status").' | '.$langs->trans("Amount").' | % | ';
while ($i < $num)
{
@@ -170,10 +170,10 @@ if ($prev_id > 0 || $ref)
print $ligne->LibStatut($row[1], 1);
- print '';
+ print ' | ';
print price($row[0]);
- print ' | ';
+ print ' | ';
if ($object->amount) print round($row[0]/$object->amount*100, 2)." %";
print ' | ';