diff --git a/htdocs/compta/bank/bankid_fr.php b/htdocs/compta/bank/bankid_fr.php
index f9b337f1686..63cabba3857 100644
--- a/htdocs/compta/bank/bankid_fr.php
+++ b/htdocs/compta/bank/bankid_fr.php
@@ -163,6 +163,13 @@ if (($_GET["id"] || $_GET["ref"]) && $action != 'edit')
if ($account->type == 0 || $account->type == 1)
{
+ // Country
+ print '
| '.$langs->trans("BankAccountCountry").' | ';
+ $img=picto_from_langcode($account->country_code);
+ print $img?$img.' ':'';
+ print getCountry($account->getCountryCode(),0,$db);
+ print " |
\n";
+
print '| '.$langs->trans("BankName").' | ';
print ''.$account->bank.' |
';
@@ -209,13 +216,6 @@ if (($_GET["id"] || $_GET["ref"]) && $action != 'edit')
print nl2br($account->domiciliation);
print "\n";
- // Country
- print '| '.$langs->trans("BankAccountCountry").' | ';
- $img=picto_from_langcode($account->country_code);
- print $img?$img.' ':'';
- print getCountry($account->getCountryCode(),0,$db);
- print " |
\n";
-
print '| '.$langs->trans("BankAccountOwner").' | ';
print $account->proprio;
print " |
\n";