* * 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$ */ /** \file htdocs/contrat/contact.php \ingroup contrat \brief Onglet de gestion des contacts des contrats \version $Revision$ */ require ("./pre.inc.php"); require_once(DOL_DOCUMENT_ROOT."/contrat/contrat.class.php"); require_once(DOL_DOCUMENT_ROOT."/contact.class.php"); $langs->load("contracts"); // $langs->load("orders"); $langs->load("companies"); $user->getrights('contrat'); if (!$user->rights->contrat->lire) accessforbidden(); // les methodes locales /** * \brief Retourne la liste déroulante des sociétés * \param selected Societe présélectionnée * \param htmlname Nom champ formulaire */ function select_societes_for_newconcat($contrat, $selected = '', $htmlname = 'newcompany') { // On recherche les societes $sql = "SELECT s.idp, s.nom FROM"; $sql .= " ".MAIN_DB_PREFIX."societe as s"; if ($filter) $sql .= " WHERE $filter"; $sql .= " ORDER BY nom ASC"; $resql = $contrat->db->query($sql); if ($resql) { $javaScript = "window.location='./contact.php?id=".$contrat->id."&".$htmlname."=' + form.".$htmlname.".options[form.".$htmlname.".selectedIndex].value;"; print '\n"; return $firstCompany; } else { dolibarr_print_error($contrat->db); } } /** * */ function select_nature_contact($contrat, $defValue, $htmlname = 'nature') { $lesNatures = $contrat->liste_nature_contact(); print '\n"; } // Sécurité accés client if ($user->societe_id > 0) { $action = ''; $socidp = $user->societe_id; } /* * 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 ($_POST["id"] > 0) { $result = $contrat->add_contact($_POST["contactid"], $_POST["nature"]); } if ($result >= 0) { Header("Location: contact.php?id=".$contrat->id); exit; } else { $mesg = '
'.$contrat->error.'
'; } } // modification d'un contact. On enregistre la nature if ($_POST["action"] == 'updateligne' && $user->rights->contrat->creer) { $contrat = new Contrat($db); if ($contrat->fetch($_GET["id"])) { $contact = $contrat->detail_contact($_POST["elrowid"]); $nature = $_POST["nature"]; $statut = $contact->statut; $result = $contrat->update_contact($_POST["elrowid"], $statut, $nature); 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"])) { $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); } } 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); /* *************************************************************************** */ /* */ /* Mode vue et edition */ /* */ /* *************************************************************************** */ $id = $_GET["id"]; if ($id > 0) { $contrat = New Contrat($db); if ($contrat->fetch($id) > 0) { if ($mesg) print $mesg; $h = 0; $head[$h][0] = DOL_URL_ROOT.'/contrat/fiche.php?id='.$contrat->id; $head[$h][1] = $langs->trans("ContractCard"); $h ++; $head[$h][0] = DOL_URL_ROOT.'/contrat/contact.php?id='.$contrat->id; $head[$h][1] = $langs->trans("ContractContacts"); $hselected = $h; $h ++; $head[$h][0] = DOL_URL_ROOT.'/contrat/info.php?id='.$contrat->id; $head[$h][1] = $langs->trans("Info"); $h ++; dolibarr_fiche_head($head, $hselected, $langs->trans("Contract").': '.$contrat->id); /* * Contrat */ print ''; // Reference du contrat print '"; // Customer print ""; print ''; print "
'.$langs->trans("Ref").''; print $contrat->ref; print "
".$langs->trans("Customer")."'; print ''.$contrat->societe->nom.'
"; 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 "\n"; $var = false; print ''; print ''; print ''; print ""; print ''; print ''; print ''; print ''; print ''; print ""; } print ''; print ''; print ''; print ''; print ''; print ''; print ''; print "\n"; $tab = $contrat->liste_contact(); $num = ($tab == null) ? 0 : count($tab); if ($tab != null && $num > 0) { $i = 0; $total = 0; $var = true; $person = new Contact($db); $societe = new Societe($db); while ($i < $num) { $objp = $contrat->detail_contact($tab[$i]); // detail du contact $person->fetch($objp->fk_socpeople); $var = !$var; // flip flop lines if ($_GET["action"] != 'editline' || $_GET["rowid"] != $tab[$i]) { print ''; print ''; print ''; // Description print ''; // Statut print ''; // Icon update et delete (statut contrat 0=brouillon,1=validé,2=fermé) print ''; print "\n"; } // mode edition de une ligne ligne (editline) // on ne change pas le contact. Seulement le type else { print ""; print ''; print ''; // Ligne carac print ""; print ''; print ''; // Description print '"; // Statut print ''; // Icon update et delete (statut contrat 0=brouillon,1=validé,2=fermé) print ''; print ''."\n"; print "\n"; } $i ++; } $db->free($result); } print "
'.$langs->trans("Societe").''.$langs->trans("Contacts").''.$langs->trans("ContactType").' 
'; $selectedCompany = isset($_GET["newcompany"])?$_GET["newcompany"]:$contrat->societe->id; $selectedCompany = select_societes_for_newconcat($contrat, $selectedCompany, $htmlname = 'newcompany'); print ''; $html->select_contacts($selectedCompany, $selected = '', $htmlname = 'contactid'); print ''; select_nature_contact($contrat, '', 'nature'); print '
 
'.$langs->trans("Societe").''.$langs->trans("Contacts").''.$langs->trans("ContactType").''.$langs->trans("Status").' 
'; if ($objp->fk_soc) { print ''; print img_object($langs->trans("ShowCompany"),"company").' '.$societe->get_nom($person->socid); print ''; } else { print ' '; } print ''; print ''; print img_object($langs->trans("ShowContact"),"contact").' '.$person->fullname.''; print ''.$objp->libelle.''; // Activation desativation du contact if ($contrat->statut >= 0) print ''; print img_statut($objp->statut); if ($contrat->statut > 0) print ''; print ''; if ($contrat->statut != 2 && $user->rights->contrat->creer) { print ''; print img_edit(); print ''; } else { print ' '; } if ($contrat->statut == 0 && $user->rights->contrat->creer) { print ' '; print ''; print img_delete(); print ''; } print '
'; if ($objp->fk_soc) { print ''; print img_object($langs->trans("ShowCompany"),"company").' '.$societe->get_nom($person->socid); print ''; } else { print ' '; } print ''; print ''; print img_object($langs->trans("ShowContact"),"contact").' '.$person->fullname.''; print ''; select_nature_contact($contrat, $objp->nature, 'nature'); print "'.img_statut($objp->statut).'
"; } else { // Contrat non trouvé print "Contrat inexistant ou accés refusé"; } } $db->close(); llxFooter('$Date$'); ?>