Update list.php

This commit is contained in:
Anthony Berton 2020-05-09 18:48:01 +02:00
parent cd4c19f363
commit 53eb891a88

View File

@ -549,6 +549,11 @@ if ($num)
{
print '<td'.($cssforfield ? ' class="'.$cssforfield.'"' : '').'>';
if ($key == 'statut') print $warehouse->getLibStatut(5);
if ($key == 'phone')
{
print dol_print_phone($obj->phone, '', 0, $obj->rowid, 'AC_TEL');
}
elseif ($key == 'fax') print dol_print_phone($obj->fax, '', 0, $obj->rowid, 'AC_FAX');
else print $warehouse->showOutputField($val, $key, $warehouse->$key, '');
print '</td>';
if (!$i) $totalarray['nbfield']++;