From d2d20bd0ead06a0c7993e59e1fd4013e81493b05 Mon Sep 17 00:00:00 2001 From: Rodolphe Quiedeville Date: Tue, 20 Jul 2004 13:58:21 +0000 Subject: [PATCH] Nouveau fichier --- htdocs/comm/propal/info.php | 91 +++++++++++++++++++++++++++++++++++++ 1 file changed, 91 insertions(+) create mode 100644 htdocs/comm/propal/info.php diff --git a/htdocs/comm/propal/info.php b/htdocs/comm/propal/info.php new file mode 100644 index 00000000000..2a733d52290 --- /dev/null +++ b/htdocs/comm/propal/info.php @@ -0,0 +1,91 @@ + + * + * 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$ + * + */ +require("./pre.inc.php"); + +$user->getrights('propale'); +if (!$user->rights->propale->lire) + accessforbidden(); + +require("../../propal.class.php"); +/* + * + * + */ +llxHeader(); + +if ($_GET["propalid"]) +{ + + $propal = new Propal($db); + $propal->fetch($_GET["propalid"]); + + $societe = new Societe($db); + $societe->fetch($propal->soc_id); + + $head[0][0] = DOL_URL_ROOT.'/comm/propal.php?propalid='.$propal->id; + $head[0][1] = "Proposition commerciale : $propal->ref"; + $h = 1; + $a = 0; + $head[$h][0] = DOL_URL_ROOT.'/comm/propal/note.php?propalid='.$propal->id; + $head[$h][1] = "Note"; + $h++; + $head[$h][0] = DOL_URL_ROOT.'/comm/propal/info.php?propalid='.$propal->id; + $head[$h][1] = "Info"; + $a=$h; + + dolibarr_fiche_head($head, $a, $societe->nom); + + $propal->info($propal->id); + dolibarr_print_object_info($propal); + + + /* TODO A FINIR */ + print " /* TODO A FINIR */
"; + + + $validor = new User($db, $obj->fk_user_valid); + $validor->fetch(''); + $cloturor = new User($db, $obj->fk_user_cloture); + $cloturor->fetch(''); + + print 'Suivi des actions
'; + print ''; + print ''; + print ''; + print ''; + + print ''; + print ''; + + print ''; + print ''; + print '
 NomDate
Création'.$author->fullname.''.$obj->datec.'
Validation'.$validor->fullname.' '.$obj->date_valid.' 
Cloture'.$cloturor->fullname.' '.$obj->date_cloture.' 
'; + + + print "
"; + + $db->close(); + +} + +llxFooter("Dernière modification $Date$ révision $Revision$"); +?>