* * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * * $Id$ * $Source$ * */ require("./pre.inc.php"); $mesg = ''; $soc = new Societe($db); if ($_GET["id"]) { $result = $soc->fetch($_GET["id"], $user); } if (!$soc->perm_read) accessforbidden(); if (!$soc->perm_perms) accessforbidden(); llxHeader("","","Fiche client"); /* * Affichage * */ if ($soc->id) { $h=0; $head[$h][0] = DOL_URL_ROOT."/telephonie/client/fiche.php?id=".$soc->id; $head[$h][1] = $langs->trans("Contrats"); $hselected = $h; $h++; $head[$h][0] = DOL_URL_ROOT."/telephonie/client/lignes.php?id=".$soc->id; $head[$h][1] = $langs->trans("Lignes"); $h++; $head[$h][0] = DOL_URL_ROOT."/telephonie/client/factures.php?id=".$soc->id; $head[$h][1] = $langs->trans("Factures"); $h++; $head[$h][0] = DOL_URL_ROOT."/telephonie/client/ca.php?id=".$soc->id; $head[$h][1] = $langs->trans("CA"); $h++; $head[$h][0] = DOL_URL_ROOT."/telephonie/client/tarifs.php?id=".$soc->id; $head[$h][1] = $langs->trans("Tarifs"); $h++; $head[$h][0] = DOL_URL_ROOT."/telephonie/client/permissions.php?id=".$soc->id; $head[$h][1] = $langs->trans("Permissions"); $hselected = $h; $h++; dolibarr_fiche_head($head, $hselected, 'Client : '.$soc->nom); print ''; print ''; print ""; print ''; print ''; print '
'.$langs->trans('Name').''.$soc->nom.''.$langs->trans('Code client').''.$soc->code_client.'
".$langs->trans('Address')."".nl2br($soc->adresse)."
".$soc->cp." ".$soc->ville." ".$soc->pays."
'.$langs->trans('Phone').''.dolibarr_print_phone($soc->tel).''.$langs->trans('Fax').''.dolibarr_print_phone($soc->fax).'

'; print ''; /* Permissions */ $sql = "SELECT u.firstname, u.name, p.pread, p.pwrite, p.pperms"; $sql .= " FROM ".MAIN_DB_PREFIX."societe_perms as p"; $sql .= " , ".MAIN_DB_PREFIX."user as u"; $sql .= " WHERE p.fk_user = u.rowid"; $sql .= " AND p.fk_soc = ".$soc->id; $sql .= " ORDER BY u.name ASC"; $resql = $db->query($sql); if ($resql) { $num = $db->num_rows($resql); if ( $num > 0 ) { $i = 0; $ligne = new LigneTel($db); print ''; print ''; print ''; print ''; print ''; print "\n"; while ($i < $num) { $obj = $db->fetch_object($resql); $var=!$var; print ""; print '\n"; print '\n"; print '\n"; print '\n"; print "\n"; $i++; } } $db->free($resql); } else { print $sql; } print "
UtilisateurLectureEcriturePermissions
'.$obj->firstname." ".$obj->name."'.img_allow($obj->pread)."'.img_allow($obj->pwrite)."'.img_allow($obj->pperms)."
"; } else { print "Error"; } print ''; /* ************************************************************************** */ /* */ /* Barre d'action */ /* */ /* ************************************************************************** */ $db->close(); llxFooter("Dernière modification $Date$ révision $Revision$"); ?>