mirror of
https://github.com/Dolibarr/dolibarr.git
synced 2026-02-08 00:52:01 +01:00
Ajout nom de la societe quand le user est un contact extrieur
This commit is contained in:
@@ -291,9 +291,14 @@ else
|
||||
print '<td colspan="3" class="valeur">'.$yn[$fuser->admin].'</td>';
|
||||
print "</tr>\n";
|
||||
|
||||
print "<tr>".'<td width="25%" valign="top">Id Soci<63>t<EFBFBD></td>';
|
||||
print '<td colspan="3" class="valeur">'.$fuser->societe_id.' </td>';
|
||||
print "</tr>\n";
|
||||
if ($fuser->societe_id > 0)
|
||||
{
|
||||
$societe = new Societe($db);
|
||||
$societe->fetch($fuser->societe_id);
|
||||
print "<tr>".'<td width="25%" valign="top">Soci<63>t<EFBFBD></td>';
|
||||
print '<td colspan="3">'.$societe->nom.' </td>';
|
||||
print "</tr>\n";
|
||||
}
|
||||
|
||||
print "<tr>".'<td width="25%" valign="top">Fiche contact</td>';
|
||||
print '<td colspan="3" valign="top">';
|
||||
|
||||
Reference in New Issue
Block a user