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

Uniformize order of fileds

parent a7c4a88b
No related branches found
No related tags found
No related merge requests found
......@@ -163,6 +163,13 @@ if (($_GET["id"] || $_GET["ref"]) && $action != 'edit')
if ($account->type == 0 || $account->type == 1)
{
// Country
print '<tr><td valign="top">'.$langs->trans("BankAccountCountry").'</td><td colspan="3">';
$img=picto_from_langcode($account->country_code);
print $img?$img.' ':'';
print getCountry($account->getCountryCode(),0,$db);
print "</td></tr>\n";
print '<tr><td valign="top">'.$langs->trans("BankName").'</td>';
print '<td colspan="3">'.$account->bank.'</td></tr>';
......@@ -209,13 +216,6 @@ if (($_GET["id"] || $_GET["ref"]) && $action != 'edit')
print nl2br($account->domiciliation);
print "</td></tr>\n";
// Country
print '<tr><td valign="top">'.$langs->trans("BankAccountCountry").'</td><td colspan="3">';
$img=picto_from_langcode($account->country_code);
print $img?$img.' ':'';
print getCountry($account->getCountryCode(),0,$db);
print "</td></tr>\n";
print '<tr><td valign="top">'.$langs->trans("BankAccountOwner").'</td><td colspan="3">';
print $account->proprio;
print "</td></tr>\n";
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment