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
commit 8edbc5c3b6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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