* Copyright (C) 2010 Laurent Destailleur * Copyright (C) 2010-2011 Regis Houssin * * 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, see . */ /** * \file htdocs/societe/commerciaux.php * \ingroup societe * \brief Page of links to sales representatives */ require("../main.inc.php"); require_once(DOL_DOCUMENT_ROOT."/core/lib/company.lib.php"); $langs->load("companies"); $langs->load("commercial"); $langs->load("customers"); $langs->load("suppliers"); $langs->load("banks"); // Security check $socid = isset($_GET["socid"])?$_GET["socid"]:''; if ($user->societe_id) $socid=$user->societe_id; $result = restrictedArea($user, 'societe','',''); /* * Actions */ if($_GET["socid"] && $_GET["commid"]) { if ($user->rights->societe->creer) { $soc = new Societe($db); $soc->id = $_GET["socid"]; $soc->fetch($_GET["socid"]); $soc->add_commercial($user, $_GET["commid"]); Header("Location: commerciaux.php?socid=".$soc->id); exit; } else { Header("Location: commerciaux.php?socid=".$_GET["socid"]); exit; } } if($_GET["socid"] && $_GET["delcommid"]) { if ($user->rights->societe->creer) { $soc = new Societe($db); $soc->id = $_GET["socid"]; $soc->fetch($_GET["socid"]); $soc->del_commercial($user, $_GET["delcommid"]); Header("Location: commerciaux.php?socid=".$soc->id); exit; } else { Header("Location: commerciaux.php?socid=".$_GET["socid"]); exit; } } /* * View */ $help_url='EN:Module_Third_Parties|FR:Module_Tiers|ES:Empresas'; llxHeader('',$langs->trans("ThirdParty"),$help_url); $form = new Form($db); if ($_GET["socid"]) { $soc = new Societe($db); $soc->id = $_GET["socid"]; $result=$soc->fetch($_GET["socid"]); $head=societe_prepare_head2($soc); dol_fiche_head($head, 'salesrepresentative', $langs->trans("ThirdParty"),0,'company'); /* * Fiche societe en mode visu */ print ''; print ''; print ''; print ''; print 'global->SOCIETE_USEPREFIX)?' colspan="3"':'').'>'; print $soc->code_client; if ($soc->check_codeclient() <> 0) print ' '.$langs->trans("WrongCustomerCode"); print ''; if (! empty($conf->global->SOCIETE_USEPREFIX)) // Old not used prefix field { print ''; } print ''; print ''; print ""; print '"; print '"; print ''; print ''; print ''; print ''; // Liste les commerciaux print ''; print '"; print '
'.$langs->trans('ThirdPartyName').''; print $form->showrefnav($soc,'socid','',($user->societe_id?0:1),'rowid','nom'); print '
'.$langs->trans('CustomerCode').''.$langs->trans('Prefix').''.$soc->prefix_comm.'
".$langs->trans('Address')."".nl2br($soc->address)."
'.$langs->trans('Zip').''.$soc->cp."'.$langs->trans('Town').''.$soc->ville."
'.$langs->trans('Country').''.$soc->pays.'
'.$langs->trans('Phone').''.dol_print_phone($soc->tel,$soc->country_code,0,$soc->id,'AC_TEL').''.$langs->trans('Fax').''.dol_print_phone($soc->fax,$soc->country_code,0,$soc->id,'AC_FAX').'
'.$langs->trans('Web').''; if ($soc->url) { print 'http://'.$soc->url.''; } print '
'.$langs->trans("SalesRepresentatives").''; $sql = "SELECT u.rowid, u.name, u.firstname"; $sql .= " FROM ".MAIN_DB_PREFIX."user as u"; $sql .= " , ".MAIN_DB_PREFIX."societe_commerciaux as sc"; $sql .= " WHERE sc.fk_soc =".$soc->id; $sql .= " AND sc.fk_user = u.rowid"; $sql .= " ORDER BY u.name ASC "; $resql = $db->query($sql); if ($resql) { $num = $db->num_rows($resql); $i = 0; while ($i < $num) { $obj = $db->fetch_object($resql); print ''; print img_object($langs->trans("ShowUser"),"user").' '; print $obj->firstname." " .$obj->name."\n"; print ' '; if ($user->rights->societe->creer) { print ''; print img_delete(); print ''; } print '
'; $i++; } $db->free($resql); } else { dol_print_error($db); } if($i == 0) { print $langs->trans("NoSalesRepresentativeAffected"); } print "
'; print "\n"; if ($user->rights->societe->creer && $user->rights->societe->client->voir) { /* * Liste * */ $langs->load("users"); $title=$langs->trans("ListOfUsers"); $sql = "SELECT u.rowid, u.name, u.firstname, u.login"; $sql.= " FROM ".MAIN_DB_PREFIX."user as u"; $sql.= " WHERE u.entity IN (0,".$conf->entity.")"; $sql.= " ORDER BY u.name ASC "; $resql = $db->query($sql); if ($resql) { $num = $db->num_rows($resql); $i = 0; print_titre($title); // Lignes des titres print ''; print ''; print ''; print ''; print ''; print "\n"; $var=True; while ($i < $num) { $obj = $db->fetch_object($resql); $var=!$var; print "'; print ''; print ''."\n"; $i++; } print "
'.$langs->trans("Name").''.$langs->trans("Login").' 
"; print ''; print img_object($langs->trans("ShowUser"),"user").' '; print stripslashes($obj->firstname)." " .stripslashes($obj->name)."\n"; print ''; print ''.$obj->login.''.$langs->trans("Add").'
"; $db->free($resql); } else { dol_print_error($db); } } } $db->close(); llxFooter(); ?>