* Copyright (C) 2004-2005 Laurent Destailleur * Copyright (C) 2004 Eric Seigne * Copyright (C) 2005 Regis Houssin * * 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/comm/propal/note.php \ingroup propale \brief Fiche d'information sur une proposition commerciale \version $Revision$ */ require('./pre.inc.php'); require_once(DOL_DOCUMENT_ROOT."/propal.class.php"); require_once(DOL_DOCUMENT_ROOT."/lib/propal.lib.php"); $langs->load('propal'); $langs->load('compta'); $langs->load('bills'); $user->getrights('propale'); if (!$user->rights->propale->lire) accessforbidden(); // Sécurité accés client if ($user->societe_id > 0) { unset($_GET['action']); $socid = $user->societe_id; } /******************************************************************************/ /* Actions */ /******************************************************************************/ if ($_POST["action"] == 'update_public' && $user->rights->facture->creer) { $propal = new Propal($db); $propal->fetch($_GET['propalid']); $db->begin(); $res=$propal->update_note_public($_POST["note_public"]); if ($res < 0) { $mesg='
'.$propal->error.'
'; $db->rollback(); } else { $db->commit(); } } if ($_POST['action'] == 'update' && $user->rights->propale->creer) { $propal = new Propal($db); $propal->fetch($_GET['propalid']); $db->begin(); $res=$propal->update_note($_POST["note"]); if ($res < 0) { $mesg='
'.$propal->error.'
'; $db->rollback(); } else { $db->commit(); } } /******************************************************************************/ /* Affichage fiche */ /******************************************************************************/ llxHeader(); $html = new Form($db); if ($_GET['propalid']) { if ($mesg) print $mesg; $propal = new Propal($db); if ( $propal->fetch($_GET['propalid']) ) { $societe = new Societe($db); if ( $societe->fetch($propal->socid) ) { $head = propal_prepare_head($propal); dolibarr_fiche_head($head, 'note', $langs->trans('Proposal')); print ''; print ''; // Société print ''; // Ligne info remises tiers print ''; // Date print ''; print ''; // Date fin propal print ''; print ''; print ''; // Note publique print ''; print '"; // Note privée if (! $user->societe_id) { print ''; print '"; } print "
'.$langs->trans('Ref').''.$propal->ref_url.'
'.$langs->trans('Company').''.$societe->getNomUrl(1).'
'.$langs->trans('Discounts').''; if ($societe->remise_client) print $langs->trans("CompanyHasRelativeDiscount",$societe->remise_client); else print $langs->trans("CompanyHasNoRelativeDiscount"); $absolute_discount=$societe->getCurrentDiscount(); print '. '; if ($absolute_discount) print $langs->trans("CompanyHasAbsoluteDiscount",$absolute_discount,$langs->trans("Currency".$conf->monnaie)); else print $langs->trans("CompanyHasNoAbsoluteDiscount"); print '.'; print '
'.$langs->trans('Date').''; print dolibarr_print_date($propal->date,'%a %d %B %Y'); print '
'.$langs->trans('DateEndPropal').''; if ($propal->fin_validite) { print dolibarr_print_date($propal->fin_validite,'%a %d %B %Y'); if ($propal->statut == 1 && $propal->fin_validite < (time() - $conf->propal->cloture->warning_delay)) print img_warning($langs->trans("Late")); } else { print $langs->trans("Unknown"); } print '
'.$langs->trans("NotePublic").' :'; if ($_GET["action"] == 'edit') { print '
'; print ''; print '
"; print ''; print '
'; } else { print ($propal->note_public?nl2br($propal->note_public):" "); } print "
'.$langs->trans("NotePrivate").' :'; if ($_GET["action"] == 'edit') { print '
'; print ''; print '
"; print ''; print '
'; } else { print ($propal->note?nl2br($propal->note):" "); } print "
"; print ''; /* * Actions */ print '
'; if ($user->rights->propale->creer && $_GET['action'] <> 'edit') { print ''.$langs->trans('Edit').''; } print '
'; } } } $db->close(); llxFooter('$Date$ - $Revision: 1.15 '); ?>