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 '
| rowid\">$objp->ref | \n"; + print "idp\">$objp->nom | \n"; + + $now = time(); + $lim = 3600 * 24 * 15 ; + + if ( ($now - $objp->date_commande) > $lim && $objp->statutid == 1 ) + { + print "> 15 jours | "; + } + else + { + print ""; + } + + print " | "; + $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)." | \n"; + + print "".price($objp->total_ht)." | \n"; + print "$objp->statut | \n"; + print "