2004-11-29 17:07:35 +01:00
|
|
|
|
<?PHP
|
2006-12-02 21:32:02 +01:00
|
|
|
|
/* Copyright (C) 2001-2006 Rodolphe Quiedeville <rodolphe@quiedeville.org>
|
2008-02-25 17:30:43 +01:00
|
|
|
|
* Copyright (C) 2004-2008 Laurent Destailleur <eldy@users.sourceforge.net>
|
2004-11-29 17:07:35 +01:00
|
|
|
|
*
|
|
|
|
|
|
* 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.
|
|
|
|
|
|
*/
|
2005-01-09 18:35:22 +01:00
|
|
|
|
|
2005-06-11 13:34:38 +02:00
|
|
|
|
/**
|
2006-12-13 17:16:23 +01:00
|
|
|
|
\file htdocs/fourn/commande/index.php
|
|
|
|
|
|
\ingroup commande
|
|
|
|
|
|
\brief Page accueil commandes fournisseurs
|
|
|
|
|
|
\version $Revision$
|
2005-01-09 18:35:22 +01:00
|
|
|
|
*/
|
|
|
|
|
|
|
2004-11-29 17:07:35 +01:00
|
|
|
|
require("./pre.inc.php");
|
2005-09-07 23:50:09 +02:00
|
|
|
|
require_once(DOL_DOCUMENT_ROOT."/contact.class.php");
|
2004-11-29 17:07:35 +01:00
|
|
|
|
|
2008-02-25 17:30:43 +01:00
|
|
|
|
// Security check
|
|
|
|
|
|
$orderid = isset($_GET["orderid"])?$_GET["orderid"]:'';
|
2008-02-25 21:03:21 +01:00
|
|
|
|
if ($user->societe_id) $socid=$user->societe_id;
|
2008-03-01 02:26:41 +01:00
|
|
|
|
$result = restrictedArea($user, 'commande_fournisseur', $orderid,'');
|
2008-02-25 17:30:43 +01:00
|
|
|
|
|
2008-02-25 00:29:30 +01:00
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
|
* View
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
llxHeader('',$langs->trans("SuppliersOrdersArea"));
|
2004-11-29 17:07:35 +01:00
|
|
|
|
|
2004-11-30 20:26:30 +01:00
|
|
|
|
$commande = new CommandeFournisseur($db);
|
|
|
|
|
|
|
2008-02-25 00:29:30 +01:00
|
|
|
|
print_barre_liste($langs->trans("SuppliersOrdersArea"), $page, "index.php", "", $sortfield, $sortorder, '', $num);
|
2004-11-29 17:07:35 +01:00
|
|
|
|
|
2008-02-25 00:29:30 +01:00
|
|
|
|
print '<table class="notopnoleftnoright" width="100%">';
|
|
|
|
|
|
print '<tr valign="top"><td class="notopnoleft" width="30%">';
|
2004-11-29 17:07:35 +01:00
|
|
|
|
|
2007-09-19 16:56:55 +02:00
|
|
|
|
$sql = "SELECT count(cf.rowid), fk_statut";
|
2008-03-01 02:26:41 +01:00
|
|
|
|
if (!$user->rights->societe->client->voir && !$socid) $sql .= ", sc.fk_soc, sc.fk_user";
|
2008-02-25 17:30:43 +01:00
|
|
|
|
$sql.= " FROM ".MAIN_DB_PREFIX."societe as s, ".MAIN_DB_PREFIX."commande_fournisseur as cf";
|
2008-03-01 02:26:41 +01:00
|
|
|
|
if (!$user->rights->societe->client->voir && !$socid) $sql .= ", ".MAIN_DB_PREFIX."societe_commerciaux as sc";
|
2007-06-12 00:51:47 +02:00
|
|
|
|
$sql.= " WHERE cf.fk_soc = s.rowid ";
|
2008-03-01 02:26:41 +01:00
|
|
|
|
if (!$user->rights->societe->client->voir && !$socid) //restriction
|
2008-02-25 17:30:43 +01:00
|
|
|
|
{
|
|
|
|
|
|
$sql .= " AND s.rowid = sc.fk_soc AND sc.fk_user = " .$user->id;
|
|
|
|
|
|
}
|
2005-06-11 13:34:38 +02:00
|
|
|
|
$sql.= " GROUP BY cf.fk_statut";
|
2004-11-29 17:07:35 +01:00
|
|
|
|
|
2005-04-04 14:29:24 +02:00
|
|
|
|
$resql = $db->query($sql);
|
|
|
|
|
|
if ($resql)
|
2004-11-29 17:07:35 +01:00
|
|
|
|
{
|
2005-04-04 14:29:24 +02:00
|
|
|
|
$num = $db->num_rows($resql);
|
2004-11-29 17:07:35 +01:00
|
|
|
|
$i = 0;
|
|
|
|
|
|
|
|
|
|
|
|
print '<table class="liste" width="100%">';
|
2005-02-13 17:57:00 +01:00
|
|
|
|
print '<tr class="liste_titre"><td>'.$langs->trans("Status").'</td><td align="center">'.$langs->trans("Nb").'</td><td> </td>';
|
2004-11-29 17:07:35 +01:00
|
|
|
|
print "</tr>\n";
|
|
|
|
|
|
$var=True;
|
|
|
|
|
|
|
2004-11-30 20:26:30 +01:00
|
|
|
|
while ($i < $num)
|
2004-11-29 17:07:35 +01:00
|
|
|
|
{
|
2005-04-04 14:29:24 +02:00
|
|
|
|
$row = $db->fetch_row($resql);
|
2004-11-29 17:07:35 +01:00
|
|
|
|
$var=!$var;
|
|
|
|
|
|
|
|
|
|
|
|
print "<tr $bc[$var]>";
|
2004-11-30 20:26:30 +01:00
|
|
|
|
print '<td>'.$commande->statuts[$row[1]].'</td>';
|
2004-11-29 17:48:07 +01:00
|
|
|
|
print '<td align="center">'.$row[0].'</td>';
|
2006-05-06 18:02:18 +02:00
|
|
|
|
print '<td align="center"><a href="liste.php?statut='.$row[1].'">'.$commande->LibStatut($row[1],3).'</a></td>';
|
2004-11-30 20:26:30 +01:00
|
|
|
|
|
2004-11-29 17:07:35 +01:00
|
|
|
|
print "</tr>\n";
|
|
|
|
|
|
$i++;
|
|
|
|
|
|
}
|
|
|
|
|
|
print "</table>";
|
2005-04-04 14:29:24 +02:00
|
|
|
|
$db->free($resql);
|
|
|
|
|
|
}
|
|
|
|
|
|
else
|
|
|
|
|
|
{
|
|
|
|
|
|
dolibarr_print_error($db);
|
|
|
|
|
|
}
|
2008-02-25 00:29:30 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
print '</td><td width="70%" valign="top" class="notopnoleft">';
|
|
|
|
|
|
|
|
|
|
|
|
|
2005-04-04 14:29:24 +02:00
|
|
|
|
$sql = "SELECT u.name, u.firstname";
|
|
|
|
|
|
$sql .= " FROM ".MAIN_DB_PREFIX."user as u";
|
|
|
|
|
|
$sql .= " , ".MAIN_DB_PREFIX."user_rights as ur";
|
|
|
|
|
|
$sql .= " WHERE u.rowid = ur.fk_user";
|
|
|
|
|
|
$sql .= " AND ur.fk_id = 184";
|
|
|
|
|
|
|
|
|
|
|
|
$resql = $db->query($sql);
|
|
|
|
|
|
if ($resql)
|
|
|
|
|
|
{
|
|
|
|
|
|
$num = $db->num_rows($resql);
|
|
|
|
|
|
$i = 0;
|
|
|
|
|
|
|
|
|
|
|
|
print '<table class="liste" width="100%">';
|
|
|
|
|
|
print '<tr class="liste_titre"><td>Personnes habilit<69>es <20> approuver les commandes</td>';
|
|
|
|
|
|
print "</tr>\n";
|
|
|
|
|
|
$var=True;
|
|
|
|
|
|
|
|
|
|
|
|
while ($i < $num)
|
|
|
|
|
|
{
|
|
|
|
|
|
$row = $db->fetch_row($resql);
|
|
|
|
|
|
$var=!$var;
|
|
|
|
|
|
|
|
|
|
|
|
print "<tr $bc[$var]>";
|
|
|
|
|
|
print '<td>'.$row[1].' '.$row[0].'</td>';
|
|
|
|
|
|
print "</tr>\n";
|
|
|
|
|
|
$i++;
|
|
|
|
|
|
}
|
|
|
|
|
|
print "</table>";
|
|
|
|
|
|
$db->free($resql);
|
2004-11-29 17:07:35 +01:00
|
|
|
|
}
|
|
|
|
|
|
else
|
|
|
|
|
|
{
|
2005-02-13 17:57:00 +01:00
|
|
|
|
dolibarr_print_error($db);
|
2004-11-29 17:07:35 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
print '</td></tr></table>';
|
|
|
|
|
|
|
|
|
|
|
|
$db->close();
|
|
|
|
|
|
|
2005-06-11 13:34:38 +02:00
|
|
|
|
llxFooter('$Date$ - $Revision$');
|
2004-11-29 17:07:35 +01:00
|
|
|
|
?>
|