mirror of
https://github.com/YunoHost-Apps/dolibarr_ynh.git
synced 2024-09-03 18:35:53 +02:00
192 lines
5.3 KiB
PHP
192 lines
5.3 KiB
PHP
|
<?php
|
||
|
/* Copyright (C) 2001-2003 Rodolphe Quiedeville <rodolphe@quiedeville.org>
|
||
|
* Copyright (C) 2004-2005 Laurent Destailleur <eldy@users.sourceforge.net>
|
||
|
* Copyright (C) 2004 Eric Seigne <eric.seigne@ryxeo.com>
|
||
|
* Copyright (C) 2005-2012 Regis Houssin <regis.houssin@capnetworks.com>
|
||
|
* Copyright (C) 2014 Marcos García <marcosgdf@gmail.com>
|
||
|
* Copyright (C) 2015 Jean-François Ferry <jfefe@aternatik.fr>
|
||
|
*
|
||
|
* 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 3 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, see <http://www.gnu.org/licenses/>.
|
||
|
*/
|
||
|
|
||
|
/**
|
||
|
* \file htdocs/product/popuprop.php
|
||
|
* \ingroup propal, produit
|
||
|
* \brief Liste des produits/services par popularite
|
||
|
*/
|
||
|
|
||
|
require '../main.inc.php';
|
||
|
require_once DOL_DOCUMENT_ROOT.'/product/class/product.class.php';
|
||
|
|
||
|
//Required to translate NbOfProposals
|
||
|
$langs->load('propal');
|
||
|
|
||
|
$type=GETPOST("type","int");
|
||
|
|
||
|
// Security check
|
||
|
if (! empty($user->societe_id)) $socid=$user->societe_id;
|
||
|
$result=restrictedArea($user,'produit|service');
|
||
|
|
||
|
$sortfield = GETPOST("sortfield",'alpha');
|
||
|
$sortorder = GETPOST("sortorder",'alpha');
|
||
|
$page = GETPOST("page",'int');
|
||
|
if ($page < 0) $page = 0;
|
||
|
if (! $sortfield) $sortfield="c";
|
||
|
if (! $sortorder) $sortorder="DESC";
|
||
|
|
||
|
$conf->liste_limit = 3;
|
||
|
|
||
|
if ($page == -1) $page = 0;
|
||
|
$limit = $conf->liste_limit;
|
||
|
$offset = $limit * $page ;
|
||
|
|
||
|
|
||
|
$staticproduct=new Product($db);
|
||
|
|
||
|
|
||
|
/*
|
||
|
* View
|
||
|
*/
|
||
|
|
||
|
$helpurl='';
|
||
|
if ($type == '0')
|
||
|
{
|
||
|
$helpurl='EN:Module_Products|FR:Module_Produits|ES:Módulo_Productos';
|
||
|
//$title=$langs->trans("StatisticsOfProducts");
|
||
|
$title=$langs->trans("Statistics");
|
||
|
}
|
||
|
else if ($type == '1')
|
||
|
{
|
||
|
$helpurl='EN:Module_Services_En|FR:Module_Services|ES:Módulo_Servicios';
|
||
|
$title=$langs->trans("StatisticsOfServices");
|
||
|
$title=$langs->trans("Statistics");
|
||
|
}
|
||
|
|
||
|
llxHeader('','',$helpurl);
|
||
|
|
||
|
print_fiche_titre($title, $mesg,'title_products.png');
|
||
|
|
||
|
|
||
|
$param = '';
|
||
|
$title = $langs->trans("ListProductServiceByPopularity");
|
||
|
if ($type != '') {
|
||
|
$param = '&type='.$type;
|
||
|
|
||
|
if ($type == 1) {
|
||
|
$title = $langs->trans("ListServiceByPopularity");
|
||
|
} else {
|
||
|
$title = $langs->trans("ListProductByPopularity");
|
||
|
}
|
||
|
}
|
||
|
|
||
|
$h=0;
|
||
|
$head = array();
|
||
|
$head[$h][0] = $_SERVER['PHP_SELF'];
|
||
|
$head[$h][1] = $title;
|
||
|
$head[$h][2] = 'product';
|
||
|
$h++;
|
||
|
|
||
|
dol_fiche_head($head,'product',$langs->trans("Statistics"));
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
$sql = "SELECT p.rowid, p.label, p.ref, p.fk_product_type as type, count(*) as c";
|
||
|
$sql.= " FROM ".MAIN_DB_PREFIX."propaldet as pd";
|
||
|
$sql.= ", ".MAIN_DB_PREFIX."product as p";
|
||
|
$sql.= ' WHERE p.entity IN ('.getEntity('product', 1).')';
|
||
|
$sql.= " AND p.rowid = pd.fk_product";
|
||
|
if ($type !== '') {
|
||
|
$sql.= " AND fk_product_type = ".$type;
|
||
|
}
|
||
|
$sql.= " GROUP BY (p.rowid)";
|
||
|
|
||
|
$result=$db->query($sql);
|
||
|
if ($result)
|
||
|
{
|
||
|
$totalnboflines = $db->num_rows($result);
|
||
|
}
|
||
|
|
||
|
$sql.= $db->order($sortfield,$sortorder);
|
||
|
$sql.= $db->plimit($limit+1, $offset);
|
||
|
|
||
|
$result=$db->query($sql);
|
||
|
if ($result)
|
||
|
{
|
||
|
$num = $db->num_rows($result);
|
||
|
$i = 0;
|
||
|
|
||
|
print_barre_liste($title, $page, $_SERVER["PHP_SELF"],$param,$sortfield,$sortorder,"",$num, $totalnboflines, '');
|
||
|
|
||
|
print '<table class="noborder" width="100%">';
|
||
|
|
||
|
print "<tr class=\"liste_titre\">";
|
||
|
print_liste_field_titre($langs->trans('Ref'), $_SERVER["PHP_SELF"], 'p.ref', '', '', '', $sortfield, $sortorder);
|
||
|
print_liste_field_titre($langs->trans('Type'), $_SERVER["PHP_SELF"], 'p.type', '', '', '', $sortfield, $sortorder);
|
||
|
print_liste_field_titre($langs->trans('Label'), $_SERVER["PHP_SELF"], 'p.label', '', '', '', $sortfield, $sortorder);
|
||
|
print_liste_field_titre($langs->trans('NbOfProposals'), $_SERVER["PHP_SELF"], 'c', '', '', 'align="right"', $sortfield, $sortorder);
|
||
|
print "</tr>\n";
|
||
|
|
||
|
|
||
|
$var=True;
|
||
|
while ($i < $num)
|
||
|
{
|
||
|
$objp = $db->fetch_object($result);
|
||
|
|
||
|
// Multilangs
|
||
|
if (! empty($conf->global->MAIN_MULTILANGS)) // si l'option est active
|
||
|
{
|
||
|
$sql = "SELECT label";
|
||
|
$sql.= " FROM ".MAIN_DB_PREFIX."product_lang";
|
||
|
$sql.= " WHERE fk_product=".$objp->rowid;
|
||
|
$sql.= " AND lang='". $langs->getDefaultLang() ."'";
|
||
|
$sql.= " LIMIT 1";
|
||
|
|
||
|
$resultp = $db->query($sql);
|
||
|
if ($resultp)
|
||
|
{
|
||
|
$objtp = $db->fetch_object($resultp);
|
||
|
if (! empty($objtp->label)) $objp->label = $objtp->label;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
$var=!$var;
|
||
|
print "<tr ".$bc[$var].">";
|
||
|
print '<td><a href="'.DOL_URL_ROOT.'/product/stats/card.php?id='.$objp->rowid.'">';
|
||
|
if ($objp->type==1) print img_object($langs->trans("ShowService"),"service");
|
||
|
else print img_object($langs->trans("ShowProduct"),"product");
|
||
|
print " ";
|
||
|
print $objp->ref.'</a></td>';
|
||
|
print '<td>';
|
||
|
if ($objp->type==1) print $langs->trans("Service");
|
||
|
else print $langs->trans("Product");
|
||
|
print '</td>';
|
||
|
print '<td>'.$objp->label.'</td>';
|
||
|
print '<td align="right">'.$objp->c.'</td>';
|
||
|
print "</tr>\n";
|
||
|
$i++;
|
||
|
}
|
||
|
|
||
|
$db->free();
|
||
|
|
||
|
print "</table>";
|
||
|
}
|
||
|
|
||
|
|
||
|
dol_fiche_end();
|
||
|
|
||
|
|
||
|
llxFooter();
|
||
|
$db->close();
|