2
0
forked from Wavyzz/dolibarr

Fix label of status for members on smartphone

This commit is contained in:
Laurent Destailleur
2019-03-15 20:18:35 +01:00
parent d512e54407
commit b6cacf3a20
2 changed files with 9 additions and 5 deletions

View File

@@ -1501,6 +1501,10 @@ function dol_banner_tab($object, $paramid, $morehtml = '', $shownav = 1, $fieldi
if ($object->statut == 0) $morehtmlstatus.=$object->getLibStatut(5);
else $morehtmlstatus.=$object->getLibStatut(4);
}
elseif ($object->element == 'member')
{
$morehtmlstatus.=$object->getLibStatut(6);
}
elseif ($object->element == 'facturerec')
{
if ($object->frequency == 0) $morehtmlstatus.=$object->getLibStatut(2);