diff --git a/htdocs/compta/bank/class/account.class.php b/htdocs/compta/bank/class/account.class.php
index 4c728adbfc8..b42ef184c8f 100644
--- a/htdocs/compta/bank/class/account.class.php
+++ b/htdocs/compta/bank/class/account.class.php
@@ -1381,6 +1381,7 @@ class Account extends CommonObject
public function getNomUrl($withpicto = 0, $mode = '', $option = '', $save_lastsearch_value = -1, $notooltip = 0)
{
global $conf, $langs, $user;
+ include_once DOL_DOCUMENT_ROOT.'/core/lib/bank.lib.php';
$result = '';
$label = img_picto('', $this->picto).' '.$langs->trans("BankAccount").'';
@@ -1389,7 +1390,7 @@ class Account extends CommonObject
}
$label .= '
'.$langs->trans('Label').': '.$this->label;
$label .= '
'.$langs->trans('AccountNumber').': '.$this->number;
- $label .= '
'.$langs->trans('IBAN').': '.$this->iban;
+ $label .= '
'.$langs->trans('IBAN').': '.getIbanHumanReadable($this);
$label .= '
'.$langs->trans('BIC').': '.$this->bic;
$label .= '
'.$langs->trans("AccountCurrency").': '.$this->currency_code;