Skip to content
Snippets Groups Projects
Commit f652cf4e authored by Frédéric France's avatar Frédéric France
Browse files

Add translation for IBAN Valid or not

parent 376eadd2
No related branches found
No related tags found
No related merge requests found
......@@ -245,7 +245,15 @@ if (($_GET["id"] || $_GET["ref"]) && $action != 'edit')
if ($account->getCountryCode() == 'IN') $bickey="SWIFT";
print '<tr><td valign="top">'.$langs->trans($ibankey).'</td>';
print '<td colspan="3">'.$account->iban.'</td></tr>';
print '<td colspan="3">'.$account->iban.'&nbsp;';
if (! empty($account->iban)) {
if (! checkIbanForAccount($account)) {
print img_picto($langs->trans("IbanNotValid"),'warning');
} else {
print img_picto($langs->trans("IbanValid"),'info');
}
}
print '</td></tr>';
print '<tr><td valign="top">'.$langs->trans($bickey).'</td>';
print '<td colspan="3">'.$account->bic.'</td></tr>';
......
......@@ -33,6 +33,8 @@ AllTime=From start
Reconciliation=Reconciliation
RIB=Bank Account Number
IBAN=IBAN number
IbanValid=Valid IBAN
IbanNotValid=Not Valid IBAN
BIC=BIC/SWIFT number
StandingOrders=Standing orders
StandingOrder=Standing order
......
......@@ -296,9 +296,9 @@ if ($socid && $action != 'edit' && $action != "create")
print '<td colspan="4">'.$account->iban . '&nbsp;';
if (! empty($account->iban)) {
if (! checkIbanForAccount($account)) {
print img_picto($langs->trans("NotValid"),'warning');
print img_picto($langs->trans("IbanNotValid"),'warning');
} else {
print img_picto($langs->trans("IsValid"),'info');
print img_picto($langs->trans("IbanValid"),'info');
}
}
print '</td></tr>';
......
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