New: Start to work on box for product distributions
Qual: Start to move code of dol_print_graph function into class DolGraph.
This commit is contained in:
parent
c18fed7e4c
commit
85572a4bd1
@ -62,13 +62,17 @@ class FactureStats extends Stats
|
|||||||
{
|
{
|
||||||
$object=new Facture($this->db);
|
$object=new Facture($this->db);
|
||||||
$this->from = MAIN_DB_PREFIX.$object->table_element." as f";
|
$this->from = MAIN_DB_PREFIX.$object->table_element." as f";
|
||||||
|
$this->from_line = MAIN_DB_PREFIX.$object->table_element_line." as tl";
|
||||||
$this->field='total';
|
$this->field='total';
|
||||||
|
$this->field_line='total_ht';
|
||||||
}
|
}
|
||||||
if ($mode == 'supplier')
|
if ($mode == 'supplier')
|
||||||
{
|
{
|
||||||
$object=new FactureFournisseur($this->db);
|
$object=new FactureFournisseur($this->db);
|
||||||
$this->from = MAIN_DB_PREFIX.$object->table_element." as f";
|
$this->from = MAIN_DB_PREFIX.$object->table_element." as f";
|
||||||
|
$this->from_line = MAIN_DB_PREFIX.$object->table_element_line." as tl";
|
||||||
$this->field='total_ht';
|
$this->field='total_ht';
|
||||||
|
$this->field_line='total_ht';
|
||||||
}
|
}
|
||||||
|
|
||||||
$this->where = " f.fk_statut > 0";
|
$this->where = " f.fk_statut > 0";
|
||||||
@ -189,6 +193,30 @@ class FactureStats extends Stats
|
|||||||
|
|
||||||
return $this->_getAllByYear($sql);
|
return $this->_getAllByYear($sql);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Return nb, amount of predefined product for year
|
||||||
|
*
|
||||||
|
* @param int $year Year to scan
|
||||||
|
* @return array Array of values
|
||||||
|
*/
|
||||||
|
function getAllByProduct($year)
|
||||||
|
{
|
||||||
|
global $user;
|
||||||
|
|
||||||
|
$sql = "SELECT product.ref, COUNT(product.ref) as nb, SUM(tl.".$this->field_line.") as total, AVG(tl.".$this->field_line.") as avg";
|
||||||
|
$sql.= " FROM ".$this->from.", ".$this->from_line.", ".MAIN_DB_PREFIX."product as product";
|
||||||
|
//if (!$user->rights->societe->client->voir && !$user->societe_id) $sql.= ", ".MAIN_DB_PREFIX."societe_commerciaux as sc";
|
||||||
|
$sql.= " WHERE ".$this->where;
|
||||||
|
$sql.= " AND f.rowid = tl.fk_facture AND tl.fk_product = product.rowid";
|
||||||
|
$sql.= " GROUP BY product.ref";
|
||||||
|
$sql.= $this->db->order('nb','DESC');
|
||||||
|
$sql.= $this->db->plimit(20);
|
||||||
|
|
||||||
|
return $this->_getAllByProduct($sql);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
?>
|
?>
|
||||||
|
|||||||
252
htdocs/core/boxes/box_graph_product_distribution.php
Normal file
252
htdocs/core/boxes/box_graph_product_distribution.php
Normal file
@ -0,0 +1,252 @@
|
|||||||
|
<?php
|
||||||
|
/* Copyright (C) 2013 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
|
||||||
|
* 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/core/boxes/box_graph_product_distribution.php.php
|
||||||
|
* \ingroup factures
|
||||||
|
* \brief Box to show graph of invoices per month
|
||||||
|
*/
|
||||||
|
include_once DOL_DOCUMENT_ROOT.'/core/boxes/modules_boxes.php';
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Class to manage the box to show last invoices
|
||||||
|
*/
|
||||||
|
class box_graph_product_distribution extends ModeleBoxes
|
||||||
|
{
|
||||||
|
var $boxcode="productdistribution";
|
||||||
|
var $boximg="object_product";
|
||||||
|
var $boxlabel="BoxProductDistribution";
|
||||||
|
var $depends = array("product|service");
|
||||||
|
|
||||||
|
var $db;
|
||||||
|
|
||||||
|
var $info_box_head = array();
|
||||||
|
var $info_box_contents = array();
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Constructor
|
||||||
|
*
|
||||||
|
* @param DoliDB $db Database handler
|
||||||
|
* @param string $param More parameters
|
||||||
|
*/
|
||||||
|
function __construct($db,$param)
|
||||||
|
{
|
||||||
|
global $conf;
|
||||||
|
|
||||||
|
$this->db=$db;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 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;
|
||||||
|
|
||||||
|
$this->max=$max;
|
||||||
|
|
||||||
|
$refreshaction='refresh_'.$this->boxcode;
|
||||||
|
|
||||||
|
include_once DOL_DOCUMENT_ROOT.'/compta/facture/class/facture.class.php';
|
||||||
|
include_once DOL_DOCUMENT_ROOT.'/comm/propal/class/propal.class.php';
|
||||||
|
include_once DOL_DOCUMENT_ROOT.'/commande/class/commande.class.php';
|
||||||
|
$facturestatic=new Facture($db);
|
||||||
|
|
||||||
|
$text = $langs->trans("BoxProductDistribution",$max);
|
||||||
|
$this->info_box_head = array(
|
||||||
|
'text' => $text,
|
||||||
|
'limit'=> dol_strlen($text),
|
||||||
|
'graph'=> 1,
|
||||||
|
'sublink'=>'',
|
||||||
|
'subtext'=>$langs->trans("Filter"),
|
||||||
|
'subpicto'=>'filter.png',
|
||||||
|
'subclass'=>'linkobject',
|
||||||
|
'target'=>'none' // Set '' to get target="_blank"
|
||||||
|
);
|
||||||
|
|
||||||
|
$param_year='DOLUSERCOOKIE_param'.$this->boxcode.'year';
|
||||||
|
$param_showinvoicenb='DOLUSERCOOKIE_param'.$this->boxcode.'showinvoicenb';
|
||||||
|
$param_showpropalnb='DOLUSERCOOKIE_param'.$this->boxcode.'showpropalnb';
|
||||||
|
$showinvoicenb=GETPOST($param_showinvoicenb,'alpha',4);
|
||||||
|
$showpropalnb=GETPOST($param_showpropalnb,'alpha',4);
|
||||||
|
if (empty($showinvoicenb) && empty($showpropalnb)) { $showpropalnb=1; $showinvoicenb=1; }
|
||||||
|
$nowarray=dol_getdate(dol_now(),true);
|
||||||
|
$year=(GETPOST($param_year,'',4)?GETPOST($param_year,'int',4):$nowarray['year']);
|
||||||
|
|
||||||
|
if ($user->rights->facture->lire)
|
||||||
|
{
|
||||||
|
|
||||||
|
include_once DOL_DOCUMENT_ROOT.'/core/class/dolgraph.class.php';
|
||||||
|
include_once DOL_DOCUMENT_ROOT.'/compta/facture/class/facturestats.class.php';
|
||||||
|
$mode='customer';
|
||||||
|
$userid=0;
|
||||||
|
$WIDTH=(($showinvoicenb && $showpropalnb) || ! empty($conf->dol_optimize_smallscreen))?'256':'320';
|
||||||
|
$HEIGHT='192';
|
||||||
|
|
||||||
|
$stats = new FactureStats($this->db, 0, $mode, ($userid>0?$userid:0));
|
||||||
|
|
||||||
|
// Build graphic number of object. $data = array(array('Lib',val1,val2,val3),...)
|
||||||
|
if ($showinvoicenb)
|
||||||
|
{
|
||||||
|
$data1 = $stats->getAllByProductEntry($year,(GETPOST('action')==$refreshaction?-1:(3600*24)));
|
||||||
|
|
||||||
|
$filenamenb = $dir."/prodserforinvoice-".$year.".png";
|
||||||
|
$fileurlnb = DOL_URL_ROOT.'/viewimage.php?modulepart=productstats&file=prodserforinvoice-'.$year.'.png';
|
||||||
|
|
||||||
|
$px1 = new DolGraph();
|
||||||
|
$mesg = $px1->isGraphKo();
|
||||||
|
if (! $mesg)
|
||||||
|
{
|
||||||
|
$px1->SetData($data1);
|
||||||
|
unset($data1);
|
||||||
|
$px1->SetPrecisionY(0);
|
||||||
|
$i=0;$tot=count($data2);$legend=array();
|
||||||
|
while ($i <= $tot)
|
||||||
|
{
|
||||||
|
$legend[]=$data2[$i][0];
|
||||||
|
$i++;
|
||||||
|
}
|
||||||
|
$px1->SetLegend($legend);
|
||||||
|
$px1->SetMaxValue($px1->GetCeilMaxValue());
|
||||||
|
$px1->SetWidth($WIDTH);
|
||||||
|
$px1->SetHeight($HEIGHT);
|
||||||
|
//$px1->SetYLabel($langs->trans("NumberOfBills"));
|
||||||
|
$px1->SetShading(3);
|
||||||
|
$px1->SetHorizTickIncrement(1);
|
||||||
|
$px1->SetPrecisionY(0);
|
||||||
|
$px1->SetCssPrefix("cssboxes");
|
||||||
|
//$px1->mode='depth';
|
||||||
|
$px1->SetType(array('pie'));
|
||||||
|
$px1->SetTitle($langs->trans("BoxProductDistributionFor",$langs->trans("ProductsServices"),$langs->transnoentitiesnoconv("Invoices")));
|
||||||
|
|
||||||
|
$px1->draw($filenamenb,$fileurlnb);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/* if ($user->rights->propal->lire)
|
||||||
|
{
|
||||||
|
// Build graphic number of object. $data = array(array('Lib',val1,val2,val3),...)
|
||||||
|
if ($showpropalnb)
|
||||||
|
{
|
||||||
|
$data2 = $stats->getAmountByMonthWithPrevYear($year,(GETPOST('action')==$refreshaction?-1:(3600*24)));
|
||||||
|
|
||||||
|
$filenamenb = $dir."/prodserforpropal-".$year.".png";
|
||||||
|
$fileurlnb = DOL_URL_ROOT.'/viewimage.php?modulepart=billstats&file=prodserforpropal-'.$year.'.png';
|
||||||
|
|
||||||
|
$px2 = new DolGraph();
|
||||||
|
$mesg = $px2->isGraphKo();
|
||||||
|
if (! $mesg)
|
||||||
|
{
|
||||||
|
$px2->SetData($data2);
|
||||||
|
unset($data2);
|
||||||
|
$px2->SetPrecisionY(0);
|
||||||
|
$i=0;$tot=count($data2);$legend=array();
|
||||||
|
while ($i <= $tot)
|
||||||
|
{
|
||||||
|
$legend[]=$data2[$i][0];
|
||||||
|
$i++;
|
||||||
|
}
|
||||||
|
$px2->SetLegend($legend);
|
||||||
|
$px2->SetMaxValue($px2->GetCeilMaxValue());
|
||||||
|
$px2->SetWidth($WIDTH);
|
||||||
|
$px2->SetHeight($HEIGHT);
|
||||||
|
//$px2->SetYLabel($langs->trans("AmountOfBillsHT"));
|
||||||
|
$px2->SetShading(3);
|
||||||
|
$px2->SetHorizTickIncrement(1);
|
||||||
|
$px2->SetPrecisionY(0);
|
||||||
|
$px2->SetCssPrefix("cssboxes");
|
||||||
|
$px2->mode='depth';
|
||||||
|
$px2->SetTitle($langs->trans("BoxProductDistributionFor",$langs->trans("ProductsServices"),$langs->transnoentitiesnoconv("Proposals")));
|
||||||
|
|
||||||
|
$px2->draw($filenamenb,$fileurlnb);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
*/
|
||||||
|
if (! $mesg)
|
||||||
|
{
|
||||||
|
$stringtoshow='';
|
||||||
|
$stringtoshow.='<script type="text/javascript" language="javascript">
|
||||||
|
jQuery(document).ready(function() {
|
||||||
|
jQuery("#idsubimg'.$this->boxcode.'").click(function() {
|
||||||
|
jQuery("#idfilter'.$this->boxcode.'").toggle();
|
||||||
|
});
|
||||||
|
});
|
||||||
|
</script>';
|
||||||
|
$stringtoshow.='<div class="center hideobject" id="idfilter'.$this->boxcode.'">'; // hideobject is to start hidden
|
||||||
|
$stringtoshow.='<form class="flat formboxfilter" method="POST" action="'.$_SERVER["PHP_SELF"].'">';
|
||||||
|
$stringtoshow.='<input type="hidden" name="action" value="'.$refreshaction.'">';
|
||||||
|
$stringtoshow.='<input type="hidden" name="DOL_AUTOSET_COOKIE" value="'.$param_year.','.$param_showinvoicenb.','.$param_showpropalnb.'">';
|
||||||
|
$stringtoshow.='<input type="checkbox" name="'.$param_showinvoicenb.'"'.($showinvoicenb?' checked="true"':'').'"> '.$langs->trans("ForInvoice");
|
||||||
|
$stringtoshow.=' ';
|
||||||
|
$stringtoshow.='<input type="checkbox" name="'.$param_showpropalnb.'"'.($showpropalnb?' checked="true"':'').'"> '.$langs->trans("ForProposals");
|
||||||
|
$stringtoshow.=' ';
|
||||||
|
$stringtoshow.='<input type="checkbox" name="'.$param_showordernb.'"'.($showordernb?' checked="true"':'').'"> '.$langs->trans("ForOrders");
|
||||||
|
$stringtoshow.='<br>';
|
||||||
|
$stringtoshow.=$langs->trans("Year").' <input class="flat" size="4" type="text" name="'.$param_year.'" value="'.$year.'">';
|
||||||
|
$stringtoshow.='<input type="image" src="'.img_picto($langs->trans("Refresh"),'refresh.png','','',1).'">';
|
||||||
|
$stringtoshow.='</form>';
|
||||||
|
$stringtoshow.='</div>';
|
||||||
|
if ($showinvoicenb && $showpropalnb)
|
||||||
|
{
|
||||||
|
$stringtoshow.='<div class="fichecenter">';
|
||||||
|
$stringtoshow.='<div class="fichehalfleft">';
|
||||||
|
}
|
||||||
|
if ($showinvoicenb) $stringtoshow.=$px1->show();
|
||||||
|
if ($showinvoicenb && $showpropalnb)
|
||||||
|
{
|
||||||
|
$stringtoshow.='</div>';
|
||||||
|
$stringtoshow.='<div class="fichehalfright">';
|
||||||
|
}
|
||||||
|
// if ($showpropalnb) $stringtoshow.=$px2->show();
|
||||||
|
if ($showinvoicenb && $showpropalnb)
|
||||||
|
{
|
||||||
|
$stringtoshow.='</div>';
|
||||||
|
$stringtoshow.='</div>';
|
||||||
|
}
|
||||||
|
$this->info_box_contents[0][0] = array('td' => 'align="center" class="nohover"','textnoformat'=>$stringtoshow);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
$this->info_box_contents[0][0] = array( 'td' => 'align="left" class="nohover"',
|
||||||
|
'maxlength'=>500,
|
||||||
|
'text' => $mesg);
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 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);
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
?>
|
||||||
@ -244,7 +244,7 @@ class DolGraph
|
|||||||
/**
|
/**
|
||||||
* Set type
|
* Set type
|
||||||
*
|
*
|
||||||
* @param array $type Array with type for each serie
|
* @param array $type Array with type for each serie. Example: array('pie'), array('lines',...,'bars')
|
||||||
* @return void
|
* @return void
|
||||||
*/
|
*/
|
||||||
function SetType($type)
|
function SetType($type)
|
||||||
@ -739,10 +739,15 @@ class DolGraph
|
|||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Build a graph onto disk using JFlot library
|
* Build a graph onto disk using JFlot library. Input when calling this method should be:
|
||||||
* $graph_data = array(array('labelxA',yA),array('labelxB',yB));
|
* $this->data = array(array( 0=>'labelxA', 1=>yA), array('labelxB',yB)); or
|
||||||
* $graph_data = array(array('labelxA',yA1,...,yAn),array('labelxB',yB1,...yBn)); // when there is n value to show for each x
|
* $this->data = array(array('label'=>'labelxA','data'=>yA), array('labelxB',yB));
|
||||||
* $legend = array("Val1",...,"Valn"); // list of n series name
|
* $this->data = array(array(0=>'labelxA',1=>yA1,...,n=>yAn), array('labelxB',yB1,...yBn)); // when there is n value to show for each x
|
||||||
|
* $this->legend= array("Val1",...,"Valn"); // list of n series name
|
||||||
|
* $this->type = array('bars',...'lines'); or array('pie')
|
||||||
|
* $this->mode = 'depth' ???
|
||||||
|
* $this->bgcolorgrid
|
||||||
|
* $this->datacolor
|
||||||
*
|
*
|
||||||
* @param string $file Image file name to use if we save onto disk
|
* @param string $file Image file name to use if we save onto disk
|
||||||
* @param string $fileurl Url path to show image if saved onto disk
|
* @param string $fileurl Url path to show image if saved onto disk
|
||||||
@ -757,10 +762,12 @@ class DolGraph
|
|||||||
// On boucle sur chaque lot de donnees
|
// On boucle sur chaque lot de donnees
|
||||||
$legends=array();
|
$legends=array();
|
||||||
$nblot=count($this->data[0])-1; // -1 to remove legend
|
$nblot=count($this->data[0])-1; // -1 to remove legend
|
||||||
|
if ($nblot < 0) dol_print_error('Bad value for property ->data. Must be set by mydolgraph->SetData before callinf mydolgrapgh->draw');
|
||||||
$firstlot=0;
|
$firstlot=0;
|
||||||
// work with line but not with bars
|
// work with line but not with bars
|
||||||
//if ($nblot > 2) $firstlot = ($nblot - 2); // We limit nblot to 2 because jflot can't manage more than 2 bars on same x
|
//if ($nblot > 2) $firstlot = ($nblot - 2); // We limit nblot to 2 because jflot can't manage more than 2 bars on same x
|
||||||
|
|
||||||
|
|
||||||
$i=$firstlot;
|
$i=$firstlot;
|
||||||
$serie=array();
|
$serie=array();
|
||||||
while ($i < $nblot)
|
while ($i < $nblot)
|
||||||
@ -784,17 +791,24 @@ class DolGraph
|
|||||||
//print "Lot de donnees $i<br>";
|
//print "Lot de donnees $i<br>";
|
||||||
//print_r($values);
|
//print_r($values);
|
||||||
//print '<br>';
|
//print '<br>';
|
||||||
|
// TODO Replace with json_encode
|
||||||
$serie[$i]="var d".$i." = [];\n";
|
$serie[$i]="var d".$i." = [];\n";
|
||||||
$x=0;
|
$x=0;
|
||||||
foreach($newvalues as $key => $val)
|
foreach($newvalues as $key => $val)
|
||||||
{
|
{
|
||||||
if (isset($val)) $serie[$i].="d".$i.".push([".$x.", ".$val."]);\n";
|
if (isset($this->type[$firstlot]) && $this->type[$firstlot] == 'pie')
|
||||||
|
{
|
||||||
|
if (isset($val)) $serie[$i].='d'.$i.'.push({"label":"'.dol_escape_js($legends[$x]).'", "data":'.$val.'});'."\n";
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
if (isset($val)) $serie[$i].='d'.$i.'.push(['.$x.', '.$val.']);'."\n";
|
||||||
|
}
|
||||||
$x++;
|
$x++;
|
||||||
}
|
}
|
||||||
|
|
||||||
$i++;
|
$i++;
|
||||||
}
|
}
|
||||||
|
|
||||||
$tag=dol_escape_htmltag(dol_string_unaccent(dol_string_nospecial(basename($file),'_',array('-','.'))));
|
$tag=dol_escape_htmltag(dol_string_unaccent(dol_string_nospecial(basename($file),'_',array('-','.'))));
|
||||||
|
|
||||||
$this->_stringtoshow ='<!-- Build using '.$this->_library.' -->'."\n";
|
$this->_stringtoshow ='<!-- Build using '.$this->_library.' -->'."\n";
|
||||||
@ -810,6 +824,60 @@ class DolGraph
|
|||||||
}
|
}
|
||||||
$this->_stringtoshow.="\n";
|
$this->_stringtoshow.="\n";
|
||||||
|
|
||||||
|
// Special case for Graph of type 'pie'
|
||||||
|
if (isset($this->type[$firstlot]) && $this->type[$firstlot] == 'pie')
|
||||||
|
{
|
||||||
|
$datacolor=array();
|
||||||
|
foreach($this->datacolor as $val) $datacolor[]="#".sprintf("%02x%02x%02x",$val[0],$val[1],$val[2]);
|
||||||
|
|
||||||
|
$this->_stringtoshow.= '
|
||||||
|
function plotWithOptions_'.$tag.'() {
|
||||||
|
$.plot($("#placeholder_'.$tag.'"), d0,
|
||||||
|
{
|
||||||
|
series: {
|
||||||
|
pie: {
|
||||||
|
show: true,
|
||||||
|
radius: 3/4,
|
||||||
|
label: {
|
||||||
|
show: true,
|
||||||
|
radius: 3/4,
|
||||||
|
formatter: function(label, series) {
|
||||||
|
var percent=Math.round(series.percent);
|
||||||
|
var number=series.data[0][1];
|
||||||
|
return \'';
|
||||||
|
$this->_stringtoshow.='<div style="font-size:8pt;text-align:center;padding:2px;color:white;">';
|
||||||
|
if ($url) $this->_stringtoshow.='<a style="color: #FFFFFF;" border="0" href="'.$url.'=">';
|
||||||
|
$this->_stringtoshow.='\'+'.($showlegend?'number':'label+\'<br/>\'+number');
|
||||||
|
if (! empty($showpercent)) $this->_stringtoshow.='+\'<br/>\'+percent+\'%\'';
|
||||||
|
$this->_stringtoshow.='+\'';
|
||||||
|
if ($url) $this->_stringtoshow.='</a>';
|
||||||
|
$this->_stringtoshow.='</div>\';
|
||||||
|
},
|
||||||
|
background: {
|
||||||
|
opacity: 0.5,
|
||||||
|
color: \'#000000\'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
zoom: {
|
||||||
|
interactive: true
|
||||||
|
},
|
||||||
|
pan: {
|
||||||
|
interactive: true
|
||||||
|
},';
|
||||||
|
if (count($datacolor))
|
||||||
|
{
|
||||||
|
$this->_stringtoshow.='colors: '.(! empty($data['seriescolor']) ? json_encode($data['seriescolor']) : json_encode($datacolor)).',';
|
||||||
|
}
|
||||||
|
$this->_stringtoshow.='legend: {show: '.($showlegend?'true':'false').', position: \'ne\' }
|
||||||
|
});
|
||||||
|
}'."\n";
|
||||||
|
}
|
||||||
|
// Other cases, graph of type 'bars', 'lines'
|
||||||
|
else
|
||||||
|
{
|
||||||
|
// Add code to support tooltips
|
||||||
$this->_stringtoshow.='
|
$this->_stringtoshow.='
|
||||||
function showTooltip_'.$tag.'(x, y, contents) {
|
function showTooltip_'.$tag.'(x, y, contents) {
|
||||||
$(\'<div id="tooltip_'.$tag.'">\' + contents + \'</div>\').css({
|
$(\'<div id="tooltip_'.$tag.'">\' + contents + \'</div>\').css({
|
||||||
@ -848,7 +916,6 @@ class DolGraph
|
|||||||
$("#tooltip_'.$tag.'").remove();
|
$("#tooltip_'.$tag.'").remove();
|
||||||
previousPoint = null;
|
previousPoint = null;
|
||||||
}
|
}
|
||||||
|
|
||||||
});
|
});
|
||||||
';
|
';
|
||||||
|
|
||||||
@ -891,6 +958,8 @@ class DolGraph
|
|||||||
$this->_stringtoshow.='});'."\n";
|
$this->_stringtoshow.='});'."\n";
|
||||||
$this->_stringtoshow.='}'."\n";
|
$this->_stringtoshow.='}'."\n";
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
$this->_stringtoshow.='plotWithOptions_'.$tag.'();'."\n";
|
$this->_stringtoshow.='plotWithOptions_'.$tag.'();'."\n";
|
||||||
$this->_stringtoshow.='});'."\n";
|
$this->_stringtoshow.='});'."\n";
|
||||||
$this->_stringtoshow.='</script>'."\n";
|
$this->_stringtoshow.='</script>'."\n";
|
||||||
|
|||||||
@ -73,14 +73,14 @@ abstract class Stats
|
|||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
dol_syslog(get_class($this).'_'.__FUNCTION__." cache file ".$newpathofdestfile." is not found or older than now - cachedelay (".$nowgmt." - ".$cachedelay.") so we can't use it.");
|
dol_syslog(get_class($this).'::'.__FUNCTION__." cache file ".$newpathofdestfile." is not found or older than now - cachedelay (".$nowgmt." - ".$cachedelay.") so we can't use it.");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Load file into $data
|
// Load file into $data
|
||||||
if ($foundintocache) // Cache file found and is not too old
|
if ($foundintocache) // Cache file found and is not too old
|
||||||
{
|
{
|
||||||
dol_syslog(get_class($this).'_'.__FUNCTION__." read data from cache file ".$newpathofdestfile." ".$filedate.".");
|
dol_syslog(get_class($this).'::'.__FUNCTION__." read data from cache file ".$newpathofdestfile." ".$filedate.".");
|
||||||
$data = dol_json_decode(file_get_contents($newpathofdestfile), true);
|
$data = dol_json_decode(file_get_contents($newpathofdestfile), true);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
@ -109,7 +109,7 @@ abstract class Stats
|
|||||||
// Save cache file
|
// Save cache file
|
||||||
if (empty($foundintocache) && ($cachedelay > 0 || $cachedelay == -1))
|
if (empty($foundintocache) && ($cachedelay > 0 || $cachedelay == -1))
|
||||||
{
|
{
|
||||||
dol_syslog(get_class($this).'_'.__FUNCTION__." save cache file ".$newpathofdestfile." onto disk.");
|
dol_syslog(get_class($this).'::'.__FUNCTION__." save cache file ".$newpathofdestfile." onto disk.");
|
||||||
if (! dol_is_dir($conf->user->dir_temp)) dol_mkdir($conf->user->dir_temp);
|
if (! dol_is_dir($conf->user->dir_temp)) dol_mkdir($conf->user->dir_temp);
|
||||||
$fp = fopen($newpathofdestfile, 'w');
|
$fp = fopen($newpathofdestfile, 'w');
|
||||||
fwrite($fp, dol_json_encode($data));
|
fwrite($fp, dol_json_encode($data));
|
||||||
@ -164,14 +164,14 @@ abstract class Stats
|
|||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
dol_syslog(get_class($this).'_'.__FUNCTION__." cache file ".$newpathofdestfile." is not found or older than now - cachedelay (".$nowgmt." - ".$cachedelay.") so we can't use it.");
|
dol_syslog(get_class($this).'::'.__FUNCTION__." cache file ".$newpathofdestfile." is not found or older than now - cachedelay (".$nowgmt." - ".$cachedelay.") so we can't use it.");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Load file into $data
|
// Load file into $data
|
||||||
if ($foundintocache) // Cache file found and is not too old
|
if ($foundintocache) // Cache file found and is not too old
|
||||||
{
|
{
|
||||||
dol_syslog(get_class($this).'_'.__FUNCTION__." read data from cache file ".$newpathofdestfile." ".$filedate.".");
|
dol_syslog(get_class($this).'::'.__FUNCTION__." read data from cache file ".$newpathofdestfile." ".$filedate.".");
|
||||||
$data = dol_json_decode(file_get_contents($newpathofdestfile), true);
|
$data = dol_json_decode(file_get_contents($newpathofdestfile), true);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
@ -200,7 +200,7 @@ abstract class Stats
|
|||||||
// Save cache file
|
// Save cache file
|
||||||
if (empty($foundintocache) && ($cachedelay > 0 || $cachedelay == -1))
|
if (empty($foundintocache) && ($cachedelay > 0 || $cachedelay == -1))
|
||||||
{
|
{
|
||||||
dol_syslog(get_class($this).'_'.__FUNCTION__." save cache file ".$newpathofdestfile." onto disk.");
|
dol_syslog(get_class($this).'::'.__FUNCTION__." save cache file ".$newpathofdestfile." onto disk.");
|
||||||
if (! dol_is_dir($conf->user->dir_temp)) dol_mkdir($conf->user->dir_temp);
|
if (! dol_is_dir($conf->user->dir_temp)) dol_mkdir($conf->user->dir_temp);
|
||||||
$fp = fopen($newpathofdestfile, 'w');
|
$fp = fopen($newpathofdestfile, 'w');
|
||||||
fwrite($fp, dol_json_encode($data));
|
fwrite($fp, dol_json_encode($data));
|
||||||
@ -250,6 +250,79 @@ abstract class Stats
|
|||||||
return $data;
|
return $data;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Return count, and sum of products
|
||||||
|
*
|
||||||
|
* @param int $year Year
|
||||||
|
* @param int $cachedelay Delay we accept for cache file (0=No read, no save of cache, -1=No read but save)
|
||||||
|
* @return array Array of values
|
||||||
|
*/
|
||||||
|
function getAllByProductEntry($year,$cachedelay=0)
|
||||||
|
{
|
||||||
|
global $conf,$user,$langs;
|
||||||
|
|
||||||
|
$datay=array();
|
||||||
|
|
||||||
|
// Search into cache
|
||||||
|
if (! empty($cachedelay))
|
||||||
|
{
|
||||||
|
include_once DOL_DOCUMENT_ROOT.'/core/lib/files.lib.php';
|
||||||
|
include_once DOL_DOCUMENT_ROOT.'/core/lib/json.lib.php';
|
||||||
|
}
|
||||||
|
|
||||||
|
$newpathofdestfile=$conf->user->dir_temp.'/'.get_class($this).'_'.__FUNCTION__.'_'.(empty($this->cachefilesuffix)?'':$this->cachefilesuffix.'_').$langs->defaultlang.'_user'.$user->id.'.cache';
|
||||||
|
$newmask='0644';
|
||||||
|
|
||||||
|
$nowgmt = dol_now();
|
||||||
|
|
||||||
|
$foundintocache=0;
|
||||||
|
if ($cachedelay > 0)
|
||||||
|
{
|
||||||
|
$filedate=dol_filemtime($newpathofdestfile);
|
||||||
|
if ($filedate >= ($nowgmt - $cachedelay))
|
||||||
|
{
|
||||||
|
$foundintocache=1;
|
||||||
|
|
||||||
|
$this->_lastfetchdate[get_class($this).'_'.__FUNCTION__]=$filedate;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
dol_syslog(get_class($this).'::'.__FUNCTION__." cache file ".$newpathofdestfile." is not found or older than now - cachedelay (".$nowgmt." - ".$cachedelay.") so we can't use it.");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Load file into $data
|
||||||
|
if ($foundintocache) // Cache file found and is not too old
|
||||||
|
{
|
||||||
|
dol_syslog(get_class($this).'::'.__FUNCTION__." read data from cache file ".$newpathofdestfile." ".$filedate.".");
|
||||||
|
$data = dol_json_decode(file_get_contents($newpathofdestfile), true);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
$data=$this->getAllByProduct($year);
|
||||||
|
// $data[$i][]=$datay[$year][$i][1]; // set yval for x=i
|
||||||
|
}
|
||||||
|
|
||||||
|
// Save cache file
|
||||||
|
if (empty($foundintocache) && ($cachedelay > 0 || $cachedelay == -1))
|
||||||
|
{
|
||||||
|
dol_syslog(get_class($this).'::'.__FUNCTION__." save cache file ".$newpathofdestfile." onto disk.");
|
||||||
|
if (! dol_is_dir($conf->user->dir_temp)) dol_mkdir($conf->user->dir_temp);
|
||||||
|
$fp = fopen($newpathofdestfile, 'w');
|
||||||
|
fwrite($fp, dol_json_encode($data));
|
||||||
|
fclose($fp);
|
||||||
|
if (! empty($conf->global->MAIN_UMASK)) $newmask=$conf->global->MAIN_UMASK;
|
||||||
|
@chmod($newpathofdestfile, octdec($newmask));
|
||||||
|
|
||||||
|
$this->_lastfetchdate[get_class($this).'_'.__FUNCTION__]=$nowgmt;
|
||||||
|
}
|
||||||
|
|
||||||
|
return $data;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
// Here we have low level of shared code called by XxxStats.class.php
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Return nb of elements by year
|
* Return nb of elements by year
|
||||||
@ -261,7 +334,7 @@ abstract class Stats
|
|||||||
{
|
{
|
||||||
$result = array();
|
$result = array();
|
||||||
|
|
||||||
dol_syslog(get_class($this)."::_getNbByYear sql=".$sql);
|
dol_syslog(get_class($this).'::'.__FUNCTION__." sql=".$sql);
|
||||||
$resql=$this->db->query($sql);
|
$resql=$this->db->query($sql);
|
||||||
if ($resql)
|
if ($resql)
|
||||||
{
|
{
|
||||||
@ -291,7 +364,7 @@ abstract class Stats
|
|||||||
{
|
{
|
||||||
$result = array();
|
$result = array();
|
||||||
|
|
||||||
dol_syslog(get_class($this)."::_getAllByYear sql=".$sql);
|
dol_syslog(get_class($this).'::'.__FUNCTION__." sql=".$sql);
|
||||||
$resql=$this->db->query($sql);
|
$resql=$this->db->query($sql);
|
||||||
if ($resql)
|
if ($resql)
|
||||||
{
|
{
|
||||||
@ -327,7 +400,7 @@ abstract class Stats
|
|||||||
$result=array();
|
$result=array();
|
||||||
$res=array();
|
$res=array();
|
||||||
|
|
||||||
dol_syslog(get_class($this)."::_getNbByMonth sql=".$sql);
|
dol_syslog(get_class($this).'::'.__FUNCTION__." sql=".$sql);
|
||||||
$resql=$this->db->query($sql);
|
$resql=$this->db->query($sql);
|
||||||
if ($resql)
|
if ($resql)
|
||||||
{
|
{
|
||||||
@ -378,7 +451,7 @@ abstract class Stats
|
|||||||
$result=array();
|
$result=array();
|
||||||
$res=array();
|
$res=array();
|
||||||
|
|
||||||
dol_syslog(get_class($this)."::_getAmountByMonth sql=".$sql);
|
dol_syslog(get_class($this).'::'.__FUNCTION__." sql=".$sql);
|
||||||
|
|
||||||
$resql=$this->db->query($sql);
|
$resql=$this->db->query($sql);
|
||||||
if ($resql)
|
if ($resql)
|
||||||
@ -425,7 +498,7 @@ abstract class Stats
|
|||||||
$result=array();
|
$result=array();
|
||||||
$res=array();
|
$res=array();
|
||||||
|
|
||||||
dol_syslog(get_class($this)."::_getAverageByMonth sql=".$sql);
|
dol_syslog(get_class($this).'::'.__FUNCTION__." sql=".$sql);
|
||||||
$resql=$this->db->query($sql);
|
$resql=$this->db->query($sql);
|
||||||
if ($resql)
|
if ($resql)
|
||||||
{
|
{
|
||||||
@ -458,6 +531,38 @@ abstract class Stats
|
|||||||
|
|
||||||
return $data;
|
return $data;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Return number or total of product refs
|
||||||
|
*
|
||||||
|
* @param string $sql SQL
|
||||||
|
* @return array
|
||||||
|
*/
|
||||||
|
function _getAllByProduct($sql)
|
||||||
|
{
|
||||||
|
$result=array();
|
||||||
|
$res=array();
|
||||||
|
|
||||||
|
dol_syslog(get_class($this).'::'.__FUNCTION__." sql=".$sql);
|
||||||
|
$resql=$this->db->query($sql);
|
||||||
|
if ($resql)
|
||||||
|
{
|
||||||
|
$num = $this->db->num_rows($resql);
|
||||||
|
$i = 0; $j = 0;
|
||||||
|
while ($i < $num)
|
||||||
|
{
|
||||||
|
$row = $this->db->fetch_row($resql);
|
||||||
|
$result[$j] = array($row[0],$row[1]); // Ref of product, nb
|
||||||
|
$j++;
|
||||||
|
$i++;
|
||||||
|
}
|
||||||
|
$this->db->free($resql);
|
||||||
|
}
|
||||||
|
else dol_print_error($this->db);
|
||||||
|
|
||||||
|
return $result;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
?>
|
?>
|
||||||
|
|||||||
@ -92,6 +92,7 @@ class modProduct extends DolibarrModules
|
|||||||
$this->boxes = array();
|
$this->boxes = array();
|
||||||
$this->boxes[0][1] = "box_produits.php";
|
$this->boxes[0][1] = "box_produits.php";
|
||||||
$this->boxes[1][1] = "box_produits_alerte_stock.php";
|
$this->boxes[1][1] = "box_produits_alerte_stock.php";
|
||||||
|
$this->boxes[2][1] = "box_graph_product_distribution.php";
|
||||||
|
|
||||||
// Permissions
|
// Permissions
|
||||||
$this->rights = array();
|
$this->rights = array();
|
||||||
|
|||||||
@ -84,3 +84,5 @@ BoxCustomersOrdersPerMonth=Customer orders per month
|
|||||||
BoxSuppliersOrdersPerMonth=Supplier orders per month
|
BoxSuppliersOrdersPerMonth=Supplier orders per month
|
||||||
BoxProposalsPerMonth=Proposals per month
|
BoxProposalsPerMonth=Proposals per month
|
||||||
NoTooLowStockProducts=No product under the low stock limit
|
NoTooLowStockProducts=No product under the low stock limit
|
||||||
|
BoxProductDistribution=Products/Services distribution
|
||||||
|
BoxProductDistributionFor=Distribution of %s for %s
|
||||||
@ -84,3 +84,5 @@ BoxCustomersOrdersPerMonth=Commandes clients par mois
|
|||||||
BoxSuppliersOrdersPerMonth=Commandes fournisseurs par mois
|
BoxSuppliersOrdersPerMonth=Commandes fournisseurs par mois
|
||||||
BoxProposalsPerMonth=Proposition par mois
|
BoxProposalsPerMonth=Proposition par mois
|
||||||
NoTooLowStockProducts=Pas de produits sous le seuil de stock minimal
|
NoTooLowStockProducts=Pas de produits sous le seuil de stock minimal
|
||||||
|
BoxProductDistribution=Répartition des produis/services
|
||||||
|
BoxProductDistributionFor=Répartition des %s pour les %s
|
||||||
Loading…
Reference in New Issue
Block a user