dolibarr/htdocs/fourn/commande/index.php

137 lines
3.4 KiB
PHP
Raw Normal View History

2004-11-29 17:07:35 +01:00
<?PHP
/* Copyright (C) 2001-2004 Rodolphe Quiedeville <rodolphe@quiedeville.org>
2005-01-09 18:35:22 +01:00
* Copyright (C) 2004-2005 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.
*
* $Id$
* $Source$
*
*/
2005-01-09 18:35:22 +01:00
2005-06-11 13:34:38 +02:00
/**
\file htdocs/fourn/commande/index.php
2005-01-09 18:35:22 +01:00
\ingroup commande
\brief Page accueil commandes fournisseurs
\version $Revision$
*/
2004-11-29 17:07:35 +01:00
require("./pre.inc.php");
require_once(DOL_DOCUMENT_ROOT."/contact.class.php");
2004-11-29 17:07:35 +01:00
llxHeader('',"Commandes Fournisseurs");
// S<>curit<69> acc<63>s client
2004-11-29 17:07:35 +01:00
if ($user->societe_id > 0)
{
$action = '';
$socidp = $user->societe_id;
}
2004-11-30 20:26:30 +01:00
$commande = new CommandeFournisseur($db);
2005-06-11 13:34:38 +02:00
2005-02-13 17:57:00 +01:00
print_barre_liste($langs->trans("SuppliersOrders"), $page, "index.php", "", $sortfield, $sortorder, '', $num);
2004-11-29 17:07:35 +01:00
2005-06-11 13:34:38 +02:00
2004-11-29 17:07:35 +01:00
print '<table class="noborder" width="100%">';
2005-06-11 13:34:38 +02:00
print '<tr valign="top"><td width="30%">';
2004-11-29 17:07:35 +01:00
2005-06-11 13:34:38 +02:00
$sql = "SELECT count(cf.rowid), fk_statut,";
$sql.= " cf.rowid,cf.ref";
$sql.= " FROM ".MAIN_DB_PREFIX."societe as s,";
$sql.= " ".MAIN_DB_PREFIX."commande_fournisseur as cf";
$sql.= " WHERE cf.fk_soc = s.idp ";
$sql.= " GROUP BY cf.fk_statut";
2004-11-29 17:07:35 +01:00
$resql = $db->query($sql);
if ($resql)
2004-11-29 17:07:35 +01: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>&nbsp;</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
{
$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>';
2004-11-30 20:26:30 +01:00
print '<td align="center"><a href="liste.php?statut='.$row[1].'"><img src="statut'.$row[1].'.png" border="0" alt="Statut"></a></td>';
2004-11-29 17:07:35 +01:00
print "</tr>\n";
$i++;
}
print "</table>";
$db->free($resql);
}
else
{
dolibarr_print_error($db);
}
print '</td><td witdh="70%" valign="top">';
$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>';
2005-06-11 13:34:38 +02:00
2004-11-29 17:07:35 +01:00
$db->close();
2005-06-11 13:34:38 +02:00
llxFooter('$Date$ - $Revision$');
2004-11-29 17:07:35 +01:00
?>