diff --git a/htdocs/adherents/note.php b/htdocs/adherents/note.php new file mode 100644 index 00000000000..e3f90f0192c --- /dev/null +++ b/htdocs/adherents/note.php @@ -0,0 +1,174 @@ + + * Copyright (C) 2004-2006 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, write to the Free Software + * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + * + * $Id$ + * $Source$ + */ + +/** + \file htdocs/compta/facture/note.php + \ingroup facture + \brief Fiche de notes sur une facture + \version $Revision$ +*/ + +require("./pre.inc.php"); +require_once(DOL_DOCUMENT_ROOT.'/lib/member.lib.php'); +require_once(DOL_DOCUMENT_ROOT.'/adherents/adherent.class.php'); + +$action=isset($_GET["action"])?$_GET["action"]:(isset($_POST["action"])?$_POST["action"]:""); +$id=isset($_GET["id"])?$_GET["id"]:(isset($_POST["id"])?$_POST["id"]:""); + +$user->getrights('adherent'); + +$langs->load("members"); +$langs->load("bills"); + +if (!$user->rights->adherent->lire) + accessforbidden(); + +$adh = new Adherent($db); +$adh->id = $id; +$adh->fetch($id); + + +/******************************************************************************/ +/* 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(); + } +} + + + +/******************************************************************************/ +/* Affichage fiche */ +/******************************************************************************/ + +llxHeader(); + +$html = new Form($db); + +if ($id) +{ + $head = member_prepare_head($adh); + + dolibarr_fiche_head($head, 'note', $langs->trans("Member")); + + if ($msg) print '
'.$msg.'
'; + + $result=$adh->load_previous_next_id($adh->next_prev_filter); + if ($result < 0) dolibarr_print_error($db,$adh->error); + $previous_id = $adh->id_previous?''.img_previous().'':''; + $next_id = $adh->id_next?''.img_next().'':''; + + print "
"; + + print ''; + + // Reference + print ''; + print ''; + print ''; + + // Nom + print ''; + print ''; + + // Prenom + print ''; + + // Login + print ''; + + // Note + print ''; + print '"; + + if ($action == 'edit') + { + print ''; + } + + print "
'.$langs->trans('Ref').''; + if ($previous_id || $next_id) print '
'; + print $adh->id; + if ($previous_id || $next_id) print ''.$previous_id.''.$next_id.'
'; + print '
'.$langs->trans("Lastname").''.$adh->nom.' 
'.$langs->trans("Firstname").''.$adh->prenom.' 
'.$langs->trans("Login").''.$adh->login.' 
'.$langs->trans("Note").' :'; + if ($action == 'edit' && $user->rights->adherent->creer) + { + print ""; + print "id."\">"; + + if ($conf->fckeditor->enabled && $conf->global->FCKEDITOR_ENABLE_SOCIETE) + { + // Editeur wysiwyg + require_once(DOL_DOCUMENT_ROOT."/lib/doleditor.class.php"); + $doleditor=new DolEditor('note',$adh->commentaire,280,'dolibarr_notes','In',true); + $doleditor->Create(); + } + else + { + print ''; + } + } + else + { + print nl2br($adh->commentaire); + } + print "
'; + print ''; + print '   '; + print ''; + print '
"; + print "
\n"; + + + /* + * Actions + */ + print ''; + print '
'; + + if ($user->rights->adherent->creer && $action != 'edit') + { + print "id&action=edit\">".$langs->trans('Edit').""; + } + + print "
"; + + +} + +$db->close(); + +llxFooter('$Date$ - $Revision$'); +?>