* Copyright (C) 2005-2007 Destailleur Laurent * * 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. */ /** \file htdocs/contrat/contact.php \ingroup contrat \brief Onglet de gestion des contacts des contrats \version $Id$ */ require ("./pre.inc.php"); require_once(DOL_DOCUMENT_ROOT.'/lib/contract.lib.php'); require_once(DOL_DOCUMENT_ROOT."/contrat/contrat.class.php"); require_once(DOL_DOCUMENT_ROOT."/contact.class.php"); $langs->load("contracts"); $langs->load("companies"); $contratid = isset($_GET["id"])?$_GET["id"]:''; // Security check if ($user->societe_id) $socid=$user->societe_id; $result = restrictedArea($user, 'contrat', $contratid); /* * Ajout d'un nouveau contact */ if ($_POST["action"] == 'addcontact' && $user->rights->contrat->creer) { $result = 0; $contrat = new Contrat($db); $result = $contrat->fetch($_GET["id"]); if ($result > 0 && $_POST["id"] > 0) { $result = $contrat->add_contact($_POST["contactid"], $_POST["type"], $_POST["source"]); } if ($result >= 0) { Header("Location: contact.php?id=".$contrat->id); exit; } else { if ($contrat->error == 'DB_ERROR_RECORD_ALREADY_EXISTS') { $langs->load("errors"); $mesg = '
'.$langs->trans("ErrorThisContactIsAlreadyDefinedAsThisType").'
'; } else { $mesg = '
'.$contrat->error.'
'; } } } // modification d'un contact. On enregistre le type if ($_POST["action"] == 'updateligne' && $user->rights->contrat->creer) { $contrat = new Contrat($db); if ($contrat->fetch($_GET["id"])) { $contact = $contrat->detail_contact($_POST["elrowid"]); $type = $_POST["type"]; $statut = $contact->statut; $result = $contrat->update_contact($_POST["elrowid"], $statut, $type); if ($result >= 0) { $db->commit(); } else { dolibarr_print_error($db, "result=$result"); $db->rollback(); } } else { dolibarr_print_error($db); } } // bascule du statut d'un contact if ($_GET["action"] == 'swapstatut' && $user->rights->contrat->creer) { $contrat = new Contrat($db); if ($contrat->fetch($_GET["id"])) { $db->begin(); $contact = $contrat->detail_contact($_GET["ligne"]); $id_type_contact = $contact->fk_c_type_contact; $statut = ($contact->statut == 4) ? 5 : 4; $result = $contrat->update_contact($_GET["ligne"], $statut, $id_type_contact); if ($result >= 0) { $db->commit(); } else { dolibarr_print_error($db, "result=$result"); $db->rollback(); } } else { dolibarr_print_error($db,$contrat->error); } } // Efface un contact if ($_GET["action"] == 'deleteline' && $user->rights->contrat->creer) { $contrat = new Contrat($db); $contrat->fetch($_GET["id"]); $result = $contrat->delete_contact($_GET["lineid"]); if ($result >= 0) { Header("Location: contact.php?id=".$contrat->id); exit; } } llxHeader('', $langs->trans("ContractCard"), "Contrat"); $html = new Form($db); $contactstatic=new Contact($db); /* *************************************************************************** */ /* */ /* Mode vue et edition */ /* */ /* *************************************************************************** */ $id = $_GET["id"]; if ($id > 0) { $contrat = New Contrat($db); if ($contrat->fetch($id) > 0) { if ($mesg) print $mesg; $soc = new Societe($db); $soc->fetch($contrat->socid); $head = contract_prepare_head($contrat); $hselected=1; dolibarr_fiche_head($head, $hselected, $langs->trans("Contract")); /* * Contrat */ print ''; // Reference du contrat print '"; // Customer print ""; print ''; // Ligne info remises tiers print ''; print "
'.$langs->trans("Ref").''; print $contrat->ref; print "
".$langs->trans("Customer")."'.$soc->getNomUrl(1).'
'.$langs->trans('Discount').''; if ($contrat->societe->remise_client) print $langs->trans("CompanyHasRelativeDiscount",$contrat->societe->remise_client); else print $langs->trans("CompanyHasNoRelativeDiscount"); $absolute_discount=$contrat->societe->getAvailableDiscounts(); print '. '; if ($absolute_discount) print $langs->trans("CompanyHasAbsoluteDiscount",$absolute_discount,$langs->trans("Currency".$conf->monnaie)); else print $langs->trans("CompanyHasNoAbsoluteDiscount"); print '.'; print '
"; print ''; /* * Lignes de contacts */ echo '
'; /* * Ajouter une ligne de contact * Non affiché en mode modification de ligne */ if ($_GET["action"] != 'editline' && $user->rights->contrat->creer) { print ''; print ''; print ''; print ''; print ''; print ''; print "\n"; $var = false; print ''; print ''; print ''; print ''; // Ligne ajout pour contact interne print ""; print ''; print ''; print ''; print ''; print ''; print ''; print ''; print ''; print ''; print ''; print ''; // Ligne ajout pour contact externe $var=!$var; print ""; print ''; print ''; print ''; print ''; print ''; print ''; print ""; } print ''; // Liste des contacts liés print ''; print ''; print ''; print ''; print ''; print ''; print ''; print "\n"; $societe = new Societe($db); $var = true; foreach(array('internal','external') as $source) { $tab = $contrat->liste_contact(-1,$source); $num=sizeof($tab); $i = 0; while ($i < $num) { $var = !$var; print ''; // Source print ''; // Societe print ''; // Contact print ''; // Type de contact print ''; // Statut print ''; // Icon update et delete (statut contrat 0=brouillon,1=validé,2=fermé) print ''; print "\n"; $i ++; } } print "
'.$langs->trans("Source").''.$langs->trans("Company").''.$langs->trans("Contacts").''.$langs->trans("ContactType").' 
'; print $langs->trans("Internal"); print ''; print $conf->global->MAIN_INFO_SOCIETE_NOM; print ''; // On récupère les id des users déjà sélectionnés //$userAlreadySelected = $contrat->getListContactId('internal'); // On ne doit pas desactiver un contact deja selectionner car on doit pouvoir le seclectionner une deuxieme fois pour un autre type $html->select_users($user->id,'contactid',0,$userAlreadySelected); print ''; $contrat->selectTypeContact($contrat, '', 'type','internal'); print '
'; print $langs->trans("External"); print ''; $selectedCompany = isset($_GET["newcompany"])?$_GET["newcompany"]:$contrat->societe->id; $selectedCompany = $contrat->selectCompaniesForNewContact($contrat, 'id', $selectedCompany, $htmlname = 'newcompany'); print ''; // On récupère les id des contacts déjà sélectionnés //$contactAlreadySelected = $contrat->getListContactId('external'); // On ne doit pas desactiver un contact deja selectionner car on doit pouvoir le seclectionner une deuxieme fois pour un autre type $nbofcontacts=$html->select_contacts($selectedCompany, $selected = '', $htmlname = 'contactid',0,$contactAlreadySelected); if ($nbofcontacts == 0) print $langs->trans("NoContactDefined"); print ''; $contrat->selectTypeContact($contrat, '', 'type','external'); print '
 
'.$langs->trans("Source").''.$langs->trans("Company").''.$langs->trans("Contacts").''.$langs->trans("ContactType").''.$langs->trans("Status").' 
'; if ($tab[$i]['source']=='internal') print $langs->trans("Internal"); if ($tab[$i]['source']=='external') print $langs->trans("External"); print ''; if ($tab[$i]['socid'] > 0) { print ''; print img_object($langs->trans("ShowCompany"),"company").' '.$societe->get_nom($tab[$i]['socid']); print ''; } if ($tab[$i]['socid'] < 0) { print $conf->global->MAIN_INFO_SOCIETE_NOM; } if (! $tab[$i]['socid']) { print ' '; } print ''; if ($tab[$i]['source']=='internal') { print ''; print img_object($langs->trans("ShowUser"),"user").' '.$tab[$i]['nom'].''; } if ($tab[$i]['source']=='external') { print ''; print img_object($langs->trans("ShowContact"),"contact").' '.$tab[$i]['nom'].''; } print ''.$tab[$i]['libelle'].''; // Activation desativation du contact if ($contrat->statut >= 0) print ''; print $contactstatic->LibStatut($tab[$i]['status'],3); if ($contrat->statut >= 0) print ''; print ''; if ($contrat->statut == 0 && $user->rights->contrat->creer) { print ' '; print ''; print img_delete(); print ''; } print '
"; } else { // Contrat non trouvé print "Contrat inexistant ou accés refusé"; } } $db->close(); llxFooter('$Date$'); ?>