* Copyright (C) 2004-2012 Laurent Destailleur * Copyright (C) 2005-2012 Regis Houssin * Copyright (C) 2012 Philippe Grand * * 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 3 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/comm/action/contact.php * \ingroup agenda * \brief Page for multi-users event */ require '../../main.inc.php'; require_once DOL_DOCUMENT_ROOT.'/core/lib/agenda.lib.php'; require_once DOL_DOCUMENT_ROOT.'/contact/class/contact.class.php'; require_once DOL_DOCUMENT_ROOT.'/user/class/user.class.php'; require_once DOL_DOCUMENT_ROOT.'/comm/action/class/actioncomm.class.php'; require_once DOL_DOCUMENT_ROOT.'/core/class/html.formcompany.class.php'; $langs->load("companies"); $langs->load("commercial"); $langs->load("other"); $langs->load("bills"); $id = GETPOST('id','int'); $action = GETPOST('action','alpha'); $ref = GETPOST('ref'); $confirm = GETPOST('confirm'); $lineid = GETPOST('lineid','int'); // Security check $socid = GETPOST('socid','int'); if ($user->societe_id) $socid=$user->societe_id; if ($user->societe_id > 0) { unset($_GET["action"]); $action=''; } $result = restrictedArea($user, 'agenda', $objectid, 'actioncomm&societe', 'myactions&allactions', 'fk_soc', 'id'); $object = new ActionComm($db); /* * Actions */ // Add new contact if ($action == 'addcontact' && $user->rights->action->creer) { $result = $object->fetch($id); if ($object->id > 0) { $contactid = (GETPOST('userid','int') ? GETPOST('userid','int') : GETPOST('contactid','int')); $result = $object->add_contact($contactid, $_POST["type"], $_POST["source"]); } if ($result >= 0) { header("Location: ".$_SERVER['PHP_SELF']."?id=".$object->id); exit; } else { if ($object->error == 'DB_ERROR_RECORD_ALREADY_EXISTS') { $langs->load("errors"); setEventMessage($langs->trans("ErrorThisContactIsAlreadyDefinedAsThisType"), 'errors'); } else { setEventMessage($object->error, 'errors'); } } } // modification d'un contact. On enregistre le type if ($action == 'updateline') { if ($object->fetch($id)) { $contact = $object->detail_contact($_POST["line"]); $type = $_POST["type"]; $statut = $contact->statut; $result = $object->update_contact($_POST["line"], $statut, $type); if ($result >= 0) { $db->commit(); } else { dol_print_error($db, "result=$result"); $db->rollback(); } } else { setEventMessage($object->error, 'errors'); } } // Bascule du statut d'un contact else if ($action == 'swapstatut') { if ($object->id > 0) { $result=$object->swapContactStatus(GETPOST('ligne')); } } // Efface un contact else if ($action == 'deletecontact') { $result = $object->delete_contact($lineid); if ($result >= 0) { header("Location: ".$_SERVER['PHP_SELF']."?id=".$object->id); exit; } else { dol_print_error($db); } } /* * View */ $form = new Form($db); $formcompany= new FormCompany($db); $contactstatic=new Contact($db); $userstatic=new User($db); $help_url='EN:Module_Agenda_En|FR:Module_Agenda|ES:M&omodulodulo_Agenda'; llxHeader('',$langs->trans("Agenda"),$help_url); if ($id > 0 || ! empty($ref)) { dol_htmloutput_mesg($mesg,$mesgs); if ($object->fetch($id,$ref) > 0) { $head=actions_prepare_head($object); dol_fiche_head($head, 'contact', $langs->trans("Action"),0,'action'); // Affichage fiche action en mode visu print ''; $linkback = ''.$langs->trans("BackToList").''; // Ref print ''; // Type if (! empty($conf->global->AGENDA_USE_EVENT_TYPE)) { print ''; } // Title print ''; // Full day event print ''; // Date start print ''; print ''; print ''; // Date end print ''; // Location print ''; print '
'.$langs->trans("Ref").''; print $form->showrefnav($object, 'id', $linkback, ($user->societe_id?0:1), 'id', 'ref', ''); print '
'.$langs->trans("Type").''.$object->type.'
'.$langs->trans("Title").''.$object->label.'
'.$langs->trans("EventOnFullDay").''.yn($object->fulldayevent).'
'.$langs->trans("DateActionStart").''; if (! $object->fulldayevent) print dol_print_date($object->datep,'dayhour'); else print dol_print_date($object->datep,'day'); if ($object->percentage == 0 && $object->datep && $object->datep < ($now - $delay_warning)) print img_warning($langs->trans("Late")); print ''."\n"; print '
'; print ''; print ''; print ''; print ''; print ''; //print ''; print img_picto($langs->trans("ViewCal"),'object_calendar').' '; print '
'."\n"; print '
'; print ''; print ''; print ''; print ''; print ''; //print ''; print img_picto($langs->trans("ViewCal"),'object_calendarweek').' '; print '
'."\n"; print '
'; print ''; print ''; print ''; print ''; print ''; //print ''; print img_picto($langs->trans("ViewCal"),'object_calendarday').' '; print '
'."\n"; print '
'.$langs->trans("DateActionEnd").''; if (! $object->fulldayevent) print dol_print_date($object->datef,'dayhour'); else print dol_print_date($object->datef,'day'); if ($object->percentage > 0 && $object->percentage < 100 && $object->datef && $object->datef < ($now- $delay_warning)) print img_warning($langs->trans("Late")); print '
'.$langs->trans("Location").''.$object->location.'
'; dol_fiche_end(); print '
'; // Contacts lines (modules that overwrite templates must declare this into descriptor) $dirtpls=array_merge($conf->modules_parts['tpl'],array('/core/tpl')); foreach($dirtpls as $reldir) { $res=@include dol_buildpath($reldir.'/contacts.tpl.php'); if ($res) break; } } else { print "ErrorRecordNotFound"; } } llxFooter(); $db->close(); ?>