Look: Uniformisation onglet socits

This commit is contained in:
Laurent Destailleur 2006-06-03 16:11:35 +00:00
parent aad0a1e010
commit 9dc3634a61
2 changed files with 12 additions and 0 deletions

View File

@ -147,9 +147,19 @@ if ($socid > 0)
}
print '<table class="border"width="100%">';
// Ref
print '<tr><td width="30%">'.$langs->trans("Name").'</td><td colspan="3">'.$societe->nom.'</td></tr>';
// Prefix
print '<tr><td>'.$langs->trans('Prefix').'</td><td colspan="3">'.$objsoc->prefix_comm.'</td></tr>';
// Nbre fichiers
print '<tr><td>'.$langs->trans("NbOfAttachedFiles").'</td><td colspan="3">'.sizeof($filearray).'</td></tr>';
//Total taille
print '<tr><td>'.$langs->trans("TotalSizeOfAttachedFiles").'</td><td colspan="3">'.$totalsize.' '.$langs->trans("bytes").'</td></tr>';
print '</table>';
print '</div>';

View File

@ -90,6 +90,7 @@ if ($socidp > 0)
print "<form method=\"post\" action=\"socnote.php\">";
print '<table class="border" width="100%">';
print '<tr><td width="50%" valign="top">'.$langs->trans("Note").'</td><td>'.$langs->trans("CurrentNote").'</td></tr>';
print '<tr><td width="50%" valign="top">';
print "<input type=\"hidden\" name=\"action\" value=\"add\">";
@ -98,6 +99,7 @@ if ($socidp > 0)
print '</td><td width="50%" valign="top">'.nl2br($societe->note).'</td>';
print "</td></tr>";
print '<tr><td colspan="2" align="center"><input type="submit" class="button" value="'.$langs->trans("Modify").'"></td></tr>';
print "</table>";
print '</form>';