Skip to content
Snippets Groups Projects
Commit d461c0df authored by Laurent Destailleur's avatar Laurent Destailleur
Browse files

Fix left align

parent 66542b63
Branches
Tags
No related merge requests found
...@@ -124,24 +124,16 @@ if ($nb < 0 || $nb1 < 0 || $nb11 < 0) ...@@ -124,24 +124,16 @@ if ($nb < 0 || $nb1 < 0 || $nb11 < 0)
print '<table class="border" width="100%">'; print '<table class="border" width="100%">';
print '<tr><td class="titlefield">'.$langs->trans("NbOfInvoiceToWithdraw").'</td>'; print '<tr><td class="titlefield">'.$langs->trans("NbOfInvoiceToWithdraw").'</td>';
print '<td align="right">'; print '<td>';
print $nb; print $nb;
print '</td></tr>'; print '</td></tr>';
print '<tr><td>'.$langs->trans("AmountToWithdraw").'</td>'; print '<tr><td>'.$langs->trans("AmountToWithdraw").'</td>';
print '<td align="right">'; print '<td>';
print price($pricetowithdraw); print price($pricetowithdraw);
print '</td>'; print '</td>';
print '</tr>'; print '</tr>';
//print '<tr><td>'.$langs->trans("NbOfInvoiceToWithdraw").' + '.$langs->trans("ThirdPartyBankCode").'='.$conf->global->PRELEVEMENT_CODE_BANQUE.'</td><td align="right">';
//print $nb1;
//print '</td></tr>';
//print '<tr><td>'.$langs->trans("NbOfInvoiceToWithdrawWithInfo").'</td><td align="right">';
//print $nb11;
//print '</td></tr>';
print '</table>'; print '</table>';
print '</div>'; print '</div>';
...@@ -158,8 +150,6 @@ else ...@@ -158,8 +150,6 @@ else
{ {
print '<a class="butActionRefused" href="#" title="'.dol_escape_htmltag($langs->transnoentitiesnoconv("NoInvoiceToWithdraw")).'">'.$langs->trans("CreateAll")."</a>\n"; print '<a class="butActionRefused" href="#" title="'.dol_escape_htmltag($langs->transnoentitiesnoconv("NoInvoiceToWithdraw")).'">'.$langs->trans("CreateAll")."</a>\n";
} }
//if ($nb11) print '<a class="butAction" href="create.php?action=create&amp;banque=1">'.$langs->trans("CreateBanque")."</a>\n";
//if ($nb1) print '<a class="butAction" href="create.php?action=create&amp;banque=1&amp;guichet=1">'.$langs->trans("CreateGuichet")."</a>\n";
print "</div>\n"; print "</div>\n";
print '<br>'; print '<br>';
...@@ -247,7 +237,7 @@ else ...@@ -247,7 +237,7 @@ else
/* /*
* List of last withdraws * List of latest withdraws
*/ */
$limit=5; $limit=5;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment