* Copyright (C) 2004-2007 Laurent Destailleur * * 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/adherents/note.php * \ingroup member * \brief Fiche de notes sur un adherent */ require("../main.inc.php"); require_once(DOL_DOCUMENT_ROOT.'/core/lib/member.lib.php'); require_once(DOL_DOCUMENT_ROOT.'/adherents/class/adherent.class.php'); require_once(DOL_DOCUMENT_ROOT."/adherents/class/adherent_type.class.php"); $action=isset($_GET["action"])?$_GET["action"]:(isset($_POST["action"])?$_POST["action"]:""); $id=isset($_GET["id"])?$_GET["id"]:(isset($_POST["id"])?$_POST["id"]:""); $langs->load("companies"); $langs->load("members"); $langs->load("bills"); if (!$user->rights->adherent->lire) accessforbidden(); $adh = new Adherent($db); $result=$adh->fetch($id); if ($result > 0) { $adht = new AdherentType($db); $result=$adht->fetch($adh->typeid); } /******************************************************************************/ /* Actions */ /******************************************************************************/ if ($_POST["action"] == 'update' && $user->rights->adherent->creer && ! $_POST["cancel"]) { $db->begin(); $res=$adh->update_note($_POST["note"],$user); if ($res < 0) { $mesg='
'.$adh->error.'
'; $db->rollback(); } else { $db->commit(); } } /* * View */ llxHeader('',$langs->trans("Member"),'EN:Module_Foundations|FR:Module_Adhérents|ES:Módulo_Miembros'); $form = new Form($db); if ($id) { $head = member_prepare_head($adh); dol_fiche_head($head, 'note', $langs->trans("Member"), 0, 'user'); if ($msg) print '
'.$msg.'
'; print "
"; print ''; print ''; // Reference print ''; print ''; print ''; // Login if (empty($conf->global->ADHERENT_LOGIN_NOT_REQUIRED)) { print ''; } // Morphy print ''; /*print '';*/ print ''; // Type print '\n"; // Company print ''; // Civility print ''; print ''; // Lastname print ''; print ''; // Firstname print ''; // Status print ''; // Note print ''; print '"; if ($action == 'edit') { print ''; } print "
'.$langs->trans('Ref').''; print $form->showrefnav($adh,'id'); print '
'.$langs->trans("Login").' / '.$langs->trans("Id").''.$adh->login.' 
'.$langs->trans("Nature").''.$adh->getmorphylib().''; print $form->showphoto('memberphoto',$member); print '
'.$langs->trans("Type").''.$adht->getNomUrl(1)."
'.$langs->trans("Company").''.$adh->societe.'
'.$langs->trans("UserTitle").''.$adh->getCivilityLabel().' 
'.$langs->trans("Lastname").''.$adh->lastname.' 
'.$langs->trans("Firstname").''.$adh->firstname.' 
'.$langs->trans("Status").''.$adh->getLibStatut(4).'
'.$langs->trans("Note").''; if ($action == 'edit' && $user->rights->adherent->creer) { print ""; print "id."\">"; require_once(DOL_DOCUMENT_ROOT."/core/class/doleditor.class.php"); $doleditor=new DolEditor('note',$adh->note,'',280,'dolibarr_notes','',true,true,$conf->global->FCKEDITOR_ENABLE_SOCIETE,10,80); $doleditor->Create(); } else { print nl2br($adh->note); } print "
'; print ''; print '   '; print ''; print '
"; print "
\n"; /* * Actions */ print ''; print '
'; if ($user->rights->adherent->creer && $action != 'edit') { print "id&action=edit\">".$langs->trans('Modify').""; } print "
"; } $db->close(); llxFooter(); ?>