From fb169470512b899f9e4842afb713992da5b90f4c Mon Sep 17 00:00:00 2001 From: Rodolphe Quiedeville Date: Sun, 9 Nov 2003 17:52:17 +0000 Subject: [PATCH] Nouveau fichier --- htdocs/commande/liste.php | 165 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 165 insertions(+) create mode 100644 htdocs/commande/liste.php diff --git a/htdocs/commande/liste.php b/htdocs/commande/liste.php new file mode 100644 index 00000000000..99b3531c757 --- /dev/null +++ b/htdocs/commande/liste.php @@ -0,0 +1,165 @@ + + * + * 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$ + * + */ + +/** +* Gestion d'une proposition commerciale +* @package propale +*/ + +require("./pre.inc.php"); + +$user->getrights('commande'); +if (!$user->rights->commande->lire) + accessforbidden(); + +/* + * Sécurité accés client + */ +if ($user->societe_id > 0) +{ + $action = ''; + $socidp = $user->societe_id; +} + + + +llxHeader(); + +/******************************************************************************/ +/* Fin des Actions */ +/******************************************************************************/ + +/**************************************************************************** + * * + * * + * Mode Liste des propales * + * * + * * + ****************************************************************************/ + +if ($sortfield == "") +{ + $sortfield="c.rowid"; +} +if ($sortorder == "") +{ + $sortorder="DESC"; +} + +if ($page == -1) { $page = 0 ; } + +$limit = $conf->liste_limit; +$offset = $limit * $page ; +$pageprev = $page - 1; +$pagenext = $page + 1; + +$sql = "SELECT s.nom, s.idp, c.rowid, c.ref, c.total_ht,".$db->pdate("c.date_commande")." as date_commande" ; +$sql .= " FROM llx_societe as s, llx_commande as c WHERE c.fk_soc = s.idp"; + +if ($socidp) +{ + $sql .= " AND s.idp = $socidp"; +} + + +if (strlen($HTTP_POST_VARS["sf_ref"]) > 0) +{ + $sql .= " AND c.ref like '%".$HTTP_POST_VARS["sf_ref"] . "%'"; +} + +$sql .= " ORDER BY $sortfield $sortorder"; +$sql .= $db->plimit($limit + 1,$offset); + +if ( $db->query($sql) ) +{ + $num = $db->num_rows(); + print_barre_liste("Commandes", $page, $PHP_SELF,"&socidp=$socidp",$sortfield,$sortorder,'',$num); + + + $i = 0; + print ''; + + print ''; + + print_liste_field_titre_new ("Réf",$PHP_SELF,"p.ref","","&socidp=$socidp",'width="15%"',$sortfield); + + print_liste_field_titre_new ("Société",$PHP_SELF,"s.nom","","&socidp=$socidp",'width="30%"',$sortfield); + + print_liste_field_titre_new ("Date",$PHP_SELF,"c.date_commande","","&socidp=$socidp", 'width="25%" align="right" colspan="2"',$sortfield); + print_liste_field_titre_new ("Prix",$PHP_SELF,"p.price","","&socidp=$socidp", ' width="20%" align="right"',$sortfield); + + print_liste_field_titre_new ("Statut",$PHP_SELF,"p.fk_statut","","&socidp=$socidp",'width="10%" align="center"',$sortfield); + print "\n"; + $var=True; + + while ($i < min($num,$limit)) + { + $objp = $db->fetch_object( $i); + + $var=!$var; + print ""; + print "\n"; + print "\n"; + + $now = time(); + $lim = 3600 * 24 * 15 ; + + if ( ($now - $objp->date_commande) > $lim && $objp->statutid == 1 ) + { + print ""; + } + else + { + print ""; + } + + print "\n"; + + print "\n"; + print "\n"; + print "\n"; + + $total = $total + $objp->price; + $subtotal = $subtotal + $objp->price; + + $i++; + } + + print "
rowid\">$objp->refidp\">$objp->nom > 15 jours "; + $y = strftime("%Y",$objp->date_commande); + $m = strftime("%m",$objp->date_commande); + + print strftime("%d",$objp->date_commande)."\n"; + print " "; + print strftime("%B",$objp->date_commande)."\n"; + print " "; + print strftime("%Y",$objp->date_commande)."".price($objp->total_ht)."$objp->statut
"; + $db->free(); + } + else + { + print $db->error(); + } + +$db->close(); +llxFooter("Dernière modification $Date$ révision $Revision$"); +?>