Merge pull request #220 from GPCsolutions/supplier-orders-box
New box showing the latest supplier orders.
This commit is contained in:
commit
774be84c54
156
htdocs/core/boxes/box_supplier_orders.php
Normal file
156
htdocs/core/boxes/box_supplier_orders.php
Normal file
@ -0,0 +1,156 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
/* Copyright (C) 2004-2006 Destailleur Laurent <eldy@users.sourceforge.net>
|
||||||
|
* Copyright (C) 2005-2009 Regis Houssin <regis@dolibarr.fr>
|
||||||
|
* Copyright (C) 2012 Raphaël Doursenaud <rdoursenaud@gpcsolutions.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 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, see <http://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* \file htdocs/core/boxes/box_supplier_orders.php
|
||||||
|
* \ingroup fournisseurs
|
||||||
|
* \brief Module that generates the latest supplier orders box
|
||||||
|
*/
|
||||||
|
include_once(DOL_DOCUMENT_ROOT."/core/boxes/modules_boxes.php");
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Class that manages the box showing latest supplier orders
|
||||||
|
*/
|
||||||
|
class box_supplier_orders extends ModeleBoxes
|
||||||
|
{
|
||||||
|
|
||||||
|
var $boxcode = "latestsupplierorders";
|
||||||
|
var $boximg = "object_order";
|
||||||
|
var $boxlabel;
|
||||||
|
var $depends = array("fournisseur");
|
||||||
|
var $db;
|
||||||
|
var $param;
|
||||||
|
var $info_box_head = array();
|
||||||
|
var $info_box_contents = array();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Constructor
|
||||||
|
*/
|
||||||
|
function box_supplier_orders()
|
||||||
|
{
|
||||||
|
global $langs;
|
||||||
|
$langs->load("boxes");
|
||||||
|
|
||||||
|
$this->boxlabel = $langs->transnoentitiesnoconv("BoxLatestSupplierOrders");
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Load data into info_box_contents array to show array later.
|
||||||
|
*
|
||||||
|
* @param int $max Maximum number of records to load
|
||||||
|
* @return void
|
||||||
|
*/
|
||||||
|
function loadBox($max = 5)
|
||||||
|
{
|
||||||
|
global $conf, $user, $langs, $db;
|
||||||
|
$langs->load("boxes");
|
||||||
|
|
||||||
|
$this->max = $max;
|
||||||
|
|
||||||
|
include_once(DOL_DOCUMENT_ROOT."/fourn/class/fournisseur.commande.class.php");
|
||||||
|
$supplierorderstatic=new CommandeFournisseur($db);
|
||||||
|
|
||||||
|
$this->info_box_head = array('text' => $langs->trans("BoxTitleLatestSupplierOrders", $max));
|
||||||
|
|
||||||
|
if ($user->rights->fournisseur->commande->lire)
|
||||||
|
{
|
||||||
|
$sql = "SELECT s.nom, s.rowid as socid,";
|
||||||
|
$sql.= " c.ref, c.tms, c.rowid,";
|
||||||
|
$sql.= " c.fk_statut";
|
||||||
|
$sql.= " FROM ".MAIN_DB_PREFIX."societe as s";
|
||||||
|
$sql.= ", ".MAIN_DB_PREFIX."commande_fournisseur as c";
|
||||||
|
if (!$user->rights->societe->client->voir && !$user->societe_id) $sql.= ", ".MAIN_DB_PREFIX."societe_commerciaux as sc";
|
||||||
|
$sql.= " WHERE c.fk_soc = s.rowid";
|
||||||
|
$sql.= " AND c.entity = ".$conf->entity;
|
||||||
|
if (!$user->rights->societe->client->voir && !$user->societe_id) $sql.= " AND s.rowid = sc.fk_soc AND sc.fk_user = " .$user->id;
|
||||||
|
if ($user->societe_id) $sql.= " AND s.rowid = ".$user->societe_id;
|
||||||
|
$sql.= " ORDER BY c.date_commande DESC, c.ref DESC ";
|
||||||
|
$sql.= $db->plimit($max, 0);
|
||||||
|
|
||||||
|
$result = $db->query($sql);
|
||||||
|
if ($result)
|
||||||
|
{
|
||||||
|
$num = $db->num_rows($result);
|
||||||
|
|
||||||
|
$i = 0;
|
||||||
|
while ($i < $num)
|
||||||
|
{
|
||||||
|
$objp = $db->fetch_object($result);
|
||||||
|
$datem=$db->jdate($objp->tms);
|
||||||
|
|
||||||
|
$urlo = DOL_URL_ROOT."/fourn/commande/fiche.php?id=".$objp->rowid;
|
||||||
|
$urls = DOL_URL_ROOT."/fourn/fiche.php?socid=".$objp->socid;
|
||||||
|
|
||||||
|
$this->info_box_contents[$i][0] = array('td' => 'align="left" width="16"',
|
||||||
|
'logo' => $this->boximg,
|
||||||
|
'url' => $urlo);
|
||||||
|
|
||||||
|
$this->info_box_contents[$i][1] = array('td' => 'align="left"',
|
||||||
|
'text' => $objp->ref,
|
||||||
|
'url' => $urlo);
|
||||||
|
|
||||||
|
$this->info_box_contents[$i][2] = array('td' => 'align="left" width="16"',
|
||||||
|
'logo' => 'company',
|
||||||
|
'url' => $urls);
|
||||||
|
|
||||||
|
$this->info_box_contents[$i][3] = array('td' => 'align="left"',
|
||||||
|
'text' => $objp->nom,
|
||||||
|
'url' => $urls);
|
||||||
|
|
||||||
|
$this->info_box_contents[$i][4] = array('td' => 'align="right"',
|
||||||
|
'text' => dol_print_date($datem,'day'),
|
||||||
|
);
|
||||||
|
|
||||||
|
$this->info_box_contents[$i][5] = array('td' => 'align="right" width="18"',
|
||||||
|
'text' => $supplierorderstatic->LibStatut($objp->fk_statut,3));
|
||||||
|
|
||||||
|
$i++;
|
||||||
|
}
|
||||||
|
|
||||||
|
if ($num == 0)
|
||||||
|
$this->info_box_contents[$i][0] = array('td' => 'align="center"', 'text' => $langs->trans("NoSupplierOrder"));
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
dol_print_error($db);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
$this->info_box_contents[0][0] = array('td' => 'align="left"',
|
||||||
|
'text' => $langs->trans("ReadPermissionNotAllowed"));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Method to show box
|
||||||
|
*
|
||||||
|
* @param array $head Array with properties of box title
|
||||||
|
* @param array $contents Array with properties of box lines
|
||||||
|
* @return void
|
||||||
|
*/
|
||||||
|
function showBox($head = null, $contents = null)
|
||||||
|
{
|
||||||
|
parent::showBox($this->info_box_head, $this->info_box_contents);
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
?>
|
||||||
@ -105,6 +105,9 @@ class modFournisseur extends DolibarrModules
|
|||||||
$this->boxes[$r][1] = "box_factures_fourn.php";
|
$this->boxes[$r][1] = "box_factures_fourn.php";
|
||||||
$r++;
|
$r++;
|
||||||
|
|
||||||
|
$this->boxes[$r][1] = "box_supplier_orders.php";
|
||||||
|
$r++;
|
||||||
|
|
||||||
// Permissions
|
// Permissions
|
||||||
$this->rights = array();
|
$this->rights = array();
|
||||||
$this->rights_class = 'fournisseur';
|
$this->rights_class = 'fournisseur';
|
||||||
|
|||||||
@ -70,3 +70,7 @@ NoRecordedProducts=No recorded products/services
|
|||||||
NoRecordedProspects=No recorded prospects
|
NoRecordedProspects=No recorded prospects
|
||||||
NoContractedProducts=No products/services contracted
|
NoContractedProducts=No products/services contracted
|
||||||
NoRecordedContracts=No recorded contracts
|
NoRecordedContracts=No recorded contracts
|
||||||
|
# Latest supplier orders
|
||||||
|
BoxLatestSupplierOrders=Latest supplier orders
|
||||||
|
BoxTitleLatestSupplierOrders=%s latest supplier orders
|
||||||
|
NoSupplierOrder=No recorded supplier order
|
||||||
|
|||||||
@ -70,3 +70,7 @@ NoRecordedProducts=Pas de produit/service enregistré
|
|||||||
NoRecordedProspects=Pas de prospect enregistré
|
NoRecordedProspects=Pas de prospect enregistré
|
||||||
NoContractedProducts=Pas de produit/service contracté
|
NoContractedProducts=Pas de produit/service contracté
|
||||||
NoRecordedContracts=Pas de contrat enregistré
|
NoRecordedContracts=Pas de contrat enregistré
|
||||||
|
# Dernières commandes fournisseur
|
||||||
|
BoxLatestSupplierOrders=Dernières commandes fournisseur
|
||||||
|
BoxTitleLatestSupplierOrders=Les %s dernières commandes fournisseur enregistrées
|
||||||
|
NoSupplierOrder=Pas de commandes fournisseur enregistrées
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user