diff --git a/htdocs/compta/prelevement/card.php b/htdocs/compta/prelevement/card.php
index 0a66c18a607..d31efcc9df8 100644
--- a/htdocs/compta/prelevement/card.php
+++ b/htdocs/compta/prelevement/card.php
@@ -344,7 +344,7 @@ if ($id > 0 || $ref)
print '
';
print_liste_field_titre("Lines", $_SERVER["PHP_SELF"], "pl.rowid", '', $urladd);
print_liste_field_titre("ThirdParty", $_SERVER["PHP_SELF"], "s.nom", '', $urladd);
- print_liste_field_titre("Amount", $_SERVER["PHP_SELF"], "pl.amount", "", $urladd, 'align="right"');
+ print_liste_field_titre("Amount", $_SERVER["PHP_SELF"], "pl.amount", "", $urladd, 'class="right"');
print_liste_field_titre('');
print "
\n";
@@ -372,7 +372,7 @@ if ($id > 0 || $ref)
print $thirdparty->getNomUrl(1);
print "\n";
- print ''.price($obj->amount)." | \n";
+ print ''.price($obj->amount)." | \n";
print '';
@@ -397,7 +397,7 @@ if ($id > 0 || $ref)
print ' | ';
print '| '.$langs->trans("Total").' | ';
print ' | ';
- print '';
+ print ' | ';
if ($total != $object->amount) print img_warning("AmountOfFileDiffersFromSumOfInvoices");
print price($total);
print " | \n";
diff --git a/htdocs/compta/prelevement/create.php b/htdocs/compta/prelevement/create.php
index c3a4fa8556d..d9298c9f607 100644
--- a/htdocs/compta/prelevement/create.php
+++ b/htdocs/compta/prelevement/create.php
@@ -234,8 +234,8 @@ if ($resql)
print ''.$langs->trans("ThirdParty").' | ';
print ''.$langs->trans("RIB").' | ';
print ''.$langs->trans("RUM").' | ';
- print ''.$langs->trans("AmountTTC").' | ';
- print ''.$langs->trans("DateRequest").' | ';
+ print ''.$langs->trans("AmountTTC").' | ';
+ print ''.$langs->trans("DateRequest").' | ';
print '
';
if ($num)
@@ -271,11 +271,11 @@ if ($resql)
if ($format) print ' ('.$format.')';
print '';
// Amount
- print '';
+ print ' | ';
print price($obj->amount, 0, $langs, 0, 0, -1, $conf->currency);
print ' | ';
// Date
- print '';
+ print ' | ';
print dol_print_date($db->jdate($obj->date_demande), 'day');
print ' | ';
print '';
@@ -317,7 +317,7 @@ if ($result)
print"\n\n";
print '';
print '| '.$langs->trans("Ref").' | ';
- print ''.$langs->trans("Date").' | '.$langs->trans("Amount").' | ';
+ print ''.$langs->trans("Date").' | '.$langs->trans("Amount").' | ';
print '
';
while ($i < min($num,$limit))
@@ -335,7 +335,7 @@ if ($result)
print ''.dol_print_date($db->jdate($obj->datec),'day')." | \n";
- print ''.price($obj->amount,0,$langs,0,0,-1,$conf->currency)." | \n";
+ print ''.price($obj->amount,0,$langs,0,0,-1,$conf->currency)." | \n";
print "\n";
$i++;
diff --git a/htdocs/compta/prelevement/demandes.php b/htdocs/compta/prelevement/demandes.php
index d4575ec0e8c..8f9df284291 100644
--- a/htdocs/compta/prelevement/demandes.php
+++ b/htdocs/compta/prelevement/demandes.php
@@ -110,8 +110,8 @@ if ($resql)
print '';
print_liste_field_titre("Bill", $_SERVER["PHP_SELF"]);
print_liste_field_titre("Company", $_SERVER["PHP_SELF"]);
- print_liste_field_titre("Amount", $_SERVER["PHP_SELF"], "", "", $param, 'align="right"');
- print_liste_field_titre("DateRequest", $_SERVER["PHP_SELF"], "", "", $param, 'align="center"');
+ print_liste_field_titre("Amount", $_SERVER["PHP_SELF"], "", "", $param, 'class="right"');
+ print_liste_field_titre("DateRequest", $_SERVER["PHP_SELF"], "", "", $param, 'class="center"');
print_liste_field_titre('');
print '
';
@@ -121,7 +121,7 @@ if ($resql)
print ' | ';
print ' | ';
// Action column
- print '';
+ print ' | ';
$searchpicto=$form->showFilterAndCheckAddButtons($massactionbutton?1:0, 'checkforselect', 1);
print $searchpicto;
print ' | ';
@@ -148,11 +148,11 @@ if ($resql)
print $thirdpartystatic->getNomUrl(1, 'customer');
print '';
- print ''.price($obj->total_ttc).' | ';
+ print ''.price($obj->total_ttc).' | ';
- print ''.dol_print_date($db->jdate($obj->date_demande), 'day').' | ';
+ print ''.dol_print_date($db->jdate($obj->date_demande), 'day').' | ';
- print ' | ';
+ print ' | ';
print '';
$i++;