Fix label of status of invoice record when using smartphone

This commit is contained in:
Laurent Destailleur
2019-03-15 23:00:50 +01:00
parent 7cdfff7263
commit 7a5a561170
2 changed files with 11 additions and 11 deletions

View File

@@ -1493,7 +1493,7 @@ function dol_banner_tab($object, $paramid, $morehtml = '', $shownav = 1, $fieldi
elseif (in_array($object->element, array('facture', 'invoice', 'invoice_supplier', 'chargesociales', 'loan')))
{
$tmptxt=$object->getLibStatut(6, $object->totalpaye);
if (empty($tmptxt) || $tmptxt == $object->getLibStatut(3) || $conf->browser->layout=='phone') $tmptxt=$object->getLibStatut(5, $object->totalpaye);
if (empty($tmptxt) || $tmptxt == $object->getLibStatut(3)) $tmptxt=$object->getLibStatut(5, $object->totalpaye);
$morehtmlstatus.=$tmptxt;
}
elseif ($object->element == 'contrat' || $object->element == 'contract')
@@ -8037,7 +8037,7 @@ function dolGetStatus($statusLabel = '', $statusLabelShort = '', $html = '', $st
$return = $htmlImg .' '. $htmlLabel;
}
elseif ($displayMode === 5) {
$return = $htmlLabelShort .' '. $htmlImg;
$return = $displayMode.$htmlLabelShort .' '. $htmlImg;
}
else { // $displayMode >= 6
$return = $htmlLabel .' '. $htmlImg;