New: Affiche nombre des produits/services en vente en plus de hors vente. Affiche le type du produit (produit ou service) dnas liste derniers produits/services.

This commit is contained in:
Laurent Destailleur 2004-05-08 14:31:02 +00:00
parent d1e5f4c4aa
commit 9e5197a2ff

View File

@ -1,5 +1,6 @@
<?PHP
/* Copyright (C) 2001-2004 Rodolphe Quiedeville <rodolphe@quiedeville.org>
* Copyright (C) 20004 Laurent Destailleur <eldy@users.sourceforge.net>
*
* 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
@ -40,45 +41,57 @@ llxHeader("","","Accueil Produits et services");
print_titre("Produits et services");
print '<table border="0" width="100%" cellspacing="0" cellpadding="4">';
print '<table border="0" width="100%" cellspacing="0" cellpadding="3">';
print '<tr><td valign="top" width="30%">';
/*
* Produits en ventes et hors vente
* Nombre de produits et/ou services
*/
$sql = "SELECT count(*), fk_product_type FROM ".MAIN_DB_PREFIX."product as p WHERE envente = 0 GROUP BY fk_product_type";
$prodser = array();
$sql = "SELECT count(*), fk_product_type, envente FROM ".MAIN_DB_PREFIX."product as p GROUP BY fk_product_type";
if ($db->query($sql))
{
$num = $db->num_rows();
$i = 0;
$phv[0] = 0;
$phv[1] = 0;
while ($i < $num)
{
$row = $db->fetch_row($i);
$phv[$row[1]] = $row[0];
$prodser[$row[1]][$row[2]] = $row[0];
$i++;
}
$db->free();
}
print '<table class="noborder" width="100%" cellspacing="0" cellpadding="4">';
print '<tr class="liste_titre"><td colspan="2">Hors vente</td></tr>';
print "<tr $bc[0]>";
print '<td><a href="liste.php?type=0&amp;envente=0">Produits hors vente</a></td><td>'.$phv[0].'</td></tr>';
print '<tr class="liste_titre"><td colspan="2">Nombre</td></tr>';
if (defined("MAIN_MODULE_PRODUIT") && MAIN_MODULE_PRODUIT)
{
print "<tr $bc[0]>";
print '<td><a href="liste.php?type=0&amp;envente=0">Produits hors vente</a></td><td>'.round($prodser[0][0]).'</td>';
print "</tr>";
print "<tr $bc[1]>";
print '<td><a href="liste.php?type=0&amp;envente=1">Produits en vente</a></td><td>'.round($prodser[0][1]).'</td>';
print "</tr>";
}
if (defined("MAIN_MODULE_SERVICE") && MAIN_MODULE_SERVICE)
{
print "<tr $bc[1]>";
print '<td><a href="liste.php?type=1&amp;envente=0">Services hors vente</a></td><td>'.$phv[1].'</td></tr>';
print "<tr $bc[0]>";
print '<td><a href="liste.php?type=1&amp;envente=0">Services hors vente</a></td><td>'.round($prodser[1][0]).'</td>';
print "</tr>";
print "<tr $bc[1]>";
print '<td><a href="liste.php?type=1&amp;envente=1">Services en vente</a></td><td>'.round($prodser[1][1]).'</td>';
print "</tr>";
}
print '</table>';
print '</td><td valign="top" width="70%">';
/*
* Derniers produits
* Derniers produits/services en vente
*/
$sql = "SELECT p.rowid, p.label, p.price, p.ref FROM ".MAIN_DB_PREFIX."product as p WHERE envente=1";
$sql = "SELECT p.rowid, p.label, p.price, p.ref, p.fk_product_type FROM ".MAIN_DB_PREFIX."product as p WHERE envente=1";
$sql .= " ORDER BY p.datec DESC ";
$sql .= $db->plimit(15 ,0);
$result = $db->query($sql) ;
@ -88,12 +101,15 @@ if ($result)
$num = $db->num_rows();
$i = 0;
$typeprodser[0]="Produit";
$typeprodser[1]="Service";
if ($num > 0)
{
print '<table class="noborder" width="100%" cellspacing="0" cellpadding="4">';
print '<table class="noborder" width="100%" cellspacing="0" cellpadding="3">';
print '<tr class="liste_titre"><td colspan="2">Derniers produits et services</td></tr>';
print '<tr class="liste_titre"><td colspan="3">Derniers produits/services en vente enregistrés</td></tr>';
$var=True;
while ($i < $num)
@ -103,8 +119,10 @@ if ($result)
print "<tr $bc[$var]>";
print "<td><a href=\"fiche.php?id=$objp->rowid\">";
print img_file();
print "</a> <a href=\"fiche.php?id=$objp->rowid\">$objp->ref</a></TD>\n";
print "<TD>$objp->label</TD></tr>\n";
print "</a> <a href=\"fiche.php?id=$objp->rowid\">$objp->ref</a></td>\n";
print "<td>$objp->label</td>";
print "<td>".$typeprodser[$objp->fk_product_type]."</td>";
print "</tr>\n";
$i++;
}
$db->free();