Fix format error in graph in fourn/commande/index.php

This commit is contained in:
lmarcouiller 2021-02-11 15:36:11 +01:00
parent ee6bc80242
commit b83b5e0a42

View File

@ -736,8 +736,8 @@ class CommandeFournisseur extends CommonOrder
}
if ($status == 5 && $billed) $statusClass = 'status6';
$statusLong = $langs->trans($this->statuts[$status]).$billedtext;
$statusShort = $langs->trans($this->statutshort[$status]);
$statusLong = $langs->transnoentitiesnoconv($this->statuts[$status]).$billedtext;
$statusShort = $langs->transnoentitiesnoconv($this->statutshort[$status]);
return dolGetStatus($statusLong, $statusShort, '', $statusClass, $mode);
}