Merge pull request #16265 from Hystepik/develop#2

Fix format error in graph in fourn/commande/index.php
This commit is contained in:
Laurent Destailleur
2021-02-11 18:32:29 +01:00
committed by GitHub

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);
}