Uniformize code

This commit is contained in:
Laurent Destailleur 2009-10-16 22:46:16 +00:00
parent a34de44b79
commit 522861ac56

View File

@ -41,6 +41,8 @@ if ($user->societe_id > 0)
* View * View
*/ */
$company=new Societe($db);
llxHeader("",$langs->trans("Projects"),"EN:Module_Projects|FR:Module_Projets|ES:Módulo_Proyectos"); llxHeader("",$langs->trans("Projects"),"EN:Module_Projects|FR:Module_Projets|ES:Módulo_Proyectos");
$text=$langs->trans("Projects"); $text=$langs->trans("Projects");
@ -127,14 +129,16 @@ if ( $resql )
print '<td nowrap="nowrap">'; print '<td nowrap="nowrap">';
if ($obj->socid) if ($obj->socid)
{ {
print '<a href="'.DOL_URL_ROOT.'/projet/liste.php?socid='.$obj->socid.'">'.img_object($langs->trans("ShowCompany"),"company")." ".$obj->nom.'</a>'; $company->id=$obj->socid;
$company->nom=$obj->nom;
print $company->getNomUrl(1);
} }
else else
{ {
print $langs->trans("Public"); print $langs->trans("Public");
} }
print '</td>'; print '</td>';
print '<td align="right">'.$obj->nb.'</td>'; print '<td align="right"><a href="'.DOL_URL_ROOT.'/projet/liste.php?socid='.$obj->socid.'">'.$obj->nb.'</a></td>';
print "</tr>\n"; print "</tr>\n";
$i++; $i++;