New: Add box for graph of customer orders
This commit is contained in:
parent
1c80f35080
commit
387c213aea
@ -30,7 +30,7 @@ class box_graph_invoices_permonth extends ModeleBoxes
|
|||||||
{
|
{
|
||||||
var $boxcode="invoicespermonth";
|
var $boxcode="invoicespermonth";
|
||||||
var $boximg="object_bill";
|
var $boximg="object_bill";
|
||||||
var $boxlabel="BoxInvoicesPerMonth";
|
var $boxlabel="BoxCustomersInvoicesPerMonth";
|
||||||
var $depends = array("facture");
|
var $depends = array("facture");
|
||||||
|
|
||||||
var $db;
|
var $db;
|
||||||
@ -50,7 +50,6 @@ class box_graph_invoices_permonth extends ModeleBoxes
|
|||||||
global $conf;
|
global $conf;
|
||||||
|
|
||||||
$this->db=$db;
|
$this->db=$db;
|
||||||
$this->enabled=$conf->global->MAIN_FEATURES_LEVEL;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -83,9 +82,11 @@ class box_graph_invoices_permonth extends ModeleBoxes
|
|||||||
|
|
||||||
if ($user->rights->facture->lire)
|
if ($user->rights->facture->lire)
|
||||||
{
|
{
|
||||||
require_once DOL_DOCUMENT_ROOT.'/core/class/dolgraph.class.php';
|
include_once DOL_DOCUMENT_ROOT.'/core/class/dolgraph.class.php';
|
||||||
include_once DOL_DOCUMENT_ROOT . '/compta/facture/class/facturestats.class.php';
|
include_once DOL_DOCUMENT_ROOT.'/compta/facture/class/facturestats.class.php';
|
||||||
|
|
||||||
|
$shownb=(! empty($conf->global->FACTURE_BOX_GRAPH_SHOW_NB));
|
||||||
|
$showtot=(! isset($conf->global->FACTURE_BOX_GRAPH_SHOW_TOT) || ! empty($conf->global->FACTURE_BOX_GRAPH_SHOW_TOT));
|
||||||
$nowarray=dol_getdate(dol_now(),true);
|
$nowarray=dol_getdate(dol_now(),true);
|
||||||
$endyear=$nowarray['year'];
|
$endyear=$nowarray['year'];
|
||||||
$startyear=$endyear-1;
|
$startyear=$endyear-1;
|
||||||
@ -96,87 +97,101 @@ class box_graph_invoices_permonth extends ModeleBoxes
|
|||||||
|
|
||||||
$stats = new FactureStats($this->db, 0, $mode, ($userid>0?$userid:0));
|
$stats = new FactureStats($this->db, 0, $mode, ($userid>0?$userid:0));
|
||||||
|
|
||||||
// Build graphic number of object. $data = array(array('Lib',val1,val2,val3),...)
|
// Build graphic number of object. $data = array(array('Lib',val1,val2,val3),...)
|
||||||
$data1 = $stats->getNbByMonthWithPrevYear($endyear,$startyear,(GETPOST('action')==$refreshaction?-1:(3600*24)));
|
if ($shownb)
|
||||||
|
{
|
||||||
|
$data1 = $stats->getNbByMonthWithPrevYear($endyear,$startyear,(GETPOST('action')==$refreshaction?-1:(3600*24)));
|
||||||
|
|
||||||
$filenamenb = $dir."/invoicesnbinyear-".$year.".png";
|
$filenamenb = $dir."/invoicesnbinyear-".$year.".png";
|
||||||
if ($mode == 'customer') $fileurlnb = DOL_URL_ROOT.'/viewimage.php?modulepart=billstats&file=invoicesnbinyear-'.$year.'.png';
|
if ($mode == 'customer') $fileurlnb = DOL_URL_ROOT.'/viewimage.php?modulepart=billstats&file=invoicesnbinyear-'.$year.'.png';
|
||||||
if ($mode == 'supplier') $fileurlnb = DOL_URL_ROOT.'/viewimage.php?modulepart=billstatssupplier&file=invoicesnbinyear-'.$year.'.png';
|
if ($mode == 'supplier') $fileurlnb = DOL_URL_ROOT.'/viewimage.php?modulepart=billstatssupplier&file=invoicesnbinyear-'.$year.'.png';
|
||||||
|
|
||||||
$px1 = new DolGraph();
|
$px1 = new DolGraph();
|
||||||
$mesg = $px1->isGraphKo();
|
$mesg = $px1->isGraphKo();
|
||||||
if (! $mesg)
|
if (! $mesg)
|
||||||
{
|
{
|
||||||
$px1->SetData($data1);
|
$px1->SetData($data1);
|
||||||
unset($data1);
|
unset($data1);
|
||||||
$px1->SetPrecisionY(0);
|
$px1->SetPrecisionY(0);
|
||||||
$i=$startyear;$legend=array();
|
$i=$startyear;$legend=array();
|
||||||
while ($i <= $endyear)
|
while ($i <= $endyear)
|
||||||
{
|
{
|
||||||
$legend[]=$i;
|
$legend[]=$i;
|
||||||
$i++;
|
$i++;
|
||||||
}
|
}
|
||||||
$px1->SetLegend($legend);
|
$px1->SetLegend($legend);
|
||||||
$px1->SetMaxValue($px1->GetCeilMaxValue());
|
$px1->SetMaxValue($px1->GetCeilMaxValue());
|
||||||
$px1->SetWidth($WIDTH);
|
$px1->SetWidth($WIDTH);
|
||||||
$px1->SetHeight($HEIGHT);
|
$px1->SetHeight($HEIGHT);
|
||||||
$px1->SetYLabel($langs->trans("NumberOfBills"));
|
$px1->SetYLabel($langs->trans("NumberOfBills"));
|
||||||
$px1->SetShading(3);
|
$px1->SetShading(3);
|
||||||
$px1->SetHorizTickIncrement(1);
|
$px1->SetHorizTickIncrement(1);
|
||||||
$px1->SetPrecisionY(0);
|
$px1->SetPrecisionY(0);
|
||||||
$px1->SetCssPrefix("cssboxes");
|
$px1->SetCssPrefix("cssboxes");
|
||||||
$px1->mode='depth';
|
$px1->mode='depth';
|
||||||
$px1->SetTitle($langs->trans("NumberOfBillsByMonth"));
|
$px1->SetTitle($langs->trans("NumberOfBillsByMonth"));
|
||||||
|
|
||||||
$px1->draw($filenamenb,$fileurlnb);
|
$px1->draw($filenamenb,$fileurlnb);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Build graphic number of object. $data = array(array('Lib',val1,val2,val3),...)
|
// Build graphic number of object. $data = array(array('Lib',val1,val2,val3),...)
|
||||||
$data2 = $stats->getAmountByMonthWithPrevYear($endyear,$startyear,(GETPOST('action')==$refreshaction?-1:(3600*24)));
|
if ($showtot)
|
||||||
|
{
|
||||||
|
$data2 = $stats->getAmountByMonthWithPrevYear($endyear,$startyear,(GETPOST('action')==$refreshaction?-1:(3600*24)));
|
||||||
|
|
||||||
$filenamenb = $dir."/invoicesnbinyear-".$year.".png";
|
$filenamenb = $dir."/invoicesamountinyear-".$year.".png";
|
||||||
if ($mode == 'customer') $fileurlnb = DOL_URL_ROOT.'/viewimage.php?modulepart=billstats&file=invoicesamountinyear-'.$year.'.png';
|
if ($mode == 'customer') $fileurlnb = DOL_URL_ROOT.'/viewimage.php?modulepart=billstats&file=invoicesamountinyear-'.$year.'.png';
|
||||||
if ($mode == 'supplier') $fileurlnb = DOL_URL_ROOT.'/viewimage.php?modulepart=billstatssupplier&file=invoicesamountinyear-'.$year.'.png';
|
if ($mode == 'supplier') $fileurlnb = DOL_URL_ROOT.'/viewimage.php?modulepart=billstatssupplier&file=invoicesamountinyear-'.$year.'.png';
|
||||||
|
|
||||||
$px2 = new DolGraph();
|
$px2 = new DolGraph();
|
||||||
$mesg = $px2->isGraphKo();
|
$mesg = $px2->isGraphKo();
|
||||||
if (! $mesg)
|
if (! $mesg)
|
||||||
{
|
|
||||||
$px2->SetData($data2);
|
|
||||||
unset($data2);
|
|
||||||
$px2->SetPrecisionY(0);
|
|
||||||
$i=$startyear;$legend=array();
|
|
||||||
while ($i <= $endyear)
|
|
||||||
{
|
{
|
||||||
$legend[]=$i;
|
$px2->SetData($data2);
|
||||||
$i++;
|
unset($data2);
|
||||||
}
|
$px2->SetPrecisionY(0);
|
||||||
$px2->SetLegend($legend);
|
$i=$startyear;$legend=array();
|
||||||
$px2->SetMaxValue($px2->GetCeilMaxValue());
|
while ($i <= $endyear)
|
||||||
$px2->SetWidth($WIDTH);
|
{
|
||||||
$px2->SetHeight($HEIGHT);
|
$legend[]=$i;
|
||||||
$px2->SetYLabel($langs->trans("AmountOfBillsHT"));
|
$i++;
|
||||||
$px2->SetShading(3);
|
}
|
||||||
$px2->SetHorizTickIncrement(1);
|
$px2->SetLegend($legend);
|
||||||
$px2->SetPrecisionY(0);
|
$px2->SetMaxValue($px2->GetCeilMaxValue());
|
||||||
$px2->SetCssPrefix("cssboxes");
|
$px2->SetWidth($WIDTH);
|
||||||
$px2->mode='depth';
|
$px2->SetHeight($HEIGHT);
|
||||||
$px2->SetTitle($langs->trans("AmountOfBillsByMonthHT"));
|
$px2->SetYLabel($langs->trans("AmountOfBillsHT"));
|
||||||
|
$px2->SetShading(3);
|
||||||
|
$px2->SetHorizTickIncrement(1);
|
||||||
|
$px2->SetPrecisionY(0);
|
||||||
|
$px2->SetCssPrefix("cssboxes");
|
||||||
|
$px2->mode='depth';
|
||||||
|
$px2->SetTitle($langs->trans("AmountOfBillsByMonthHT"));
|
||||||
|
|
||||||
$px2->draw($filenamenb,$fileurlnb);
|
$px2->draw($filenamenb,$fileurlnb);
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
if (! $mesg)
|
if (! $mesg)
|
||||||
{
|
{
|
||||||
$stringtoshow ='<div class="fichecenter">';
|
if ($shownb && $showtot)
|
||||||
//$stringtoshow.='<div class="fichehalfleft">';
|
{
|
||||||
//$stringtoshow.=$px1->show();
|
$stringtoshow ='<div class="fichecenter">';
|
||||||
//$stringtoshow.='</div>';
|
$stringtoshow.='<div class="fichehalfleft">';
|
||||||
//$stringtoshow.='<div class="fichehalfright">';
|
}
|
||||||
$stringtoshow.=$px2->show();
|
if ($shownb) $stringtoshow.=$px1->show();
|
||||||
//$stringtoshow.='</div>';
|
if ($shownb && $showtot)
|
||||||
$stringtoshow.='</div>';
|
{
|
||||||
|
$stringtoshow.='</div>';
|
||||||
|
$stringtoshow.='<div class="fichehalfright">';
|
||||||
|
}
|
||||||
|
if ($showtot) $stringtoshow.=$px2->show();
|
||||||
|
if ($shownb && $showtot)
|
||||||
|
{
|
||||||
|
$stringtoshow.='</div>';
|
||||||
|
$stringtoshow.='</div>';
|
||||||
|
}
|
||||||
$this->info_box_contents[0][0] = array('td' => 'align="center"','textnoformat'=>$stringtoshow);
|
$this->info_box_contents[0][0] = array('td' => 'align="center"','textnoformat'=>$stringtoshow);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
|||||||
225
htdocs/core/boxes/box_graph_orders_permonth.php
Normal file
225
htdocs/core/boxes/box_graph_orders_permonth.php
Normal file
@ -0,0 +1,225 @@
|
|||||||
|
<?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_order_permonth.php
|
||||||
|
* \ingroup commandes
|
||||||
|
* \brief Box to show graph of orders per month
|
||||||
|
*/
|
||||||
|
include_once DOL_DOCUMENT_ROOT.'/core/boxes/modules_boxes.php';
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Class to manage the box to show last orders
|
||||||
|
*/
|
||||||
|
class box_graph_orders_permonth extends ModeleBoxes
|
||||||
|
{
|
||||||
|
var $boxcode="orderspermonth";
|
||||||
|
var $boximg="object_bill";
|
||||||
|
var $boxlabel="BoxCustomersOrdersPerMonth";
|
||||||
|
var $depends = array("commande");
|
||||||
|
|
||||||
|
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.'/commande/class/commande.class.php';
|
||||||
|
$commandestatic=new Commande($db);
|
||||||
|
|
||||||
|
$text = $langs->trans("BoxCustomersOrdersPerMonth",$max);
|
||||||
|
$this->info_box_head = array(
|
||||||
|
'text' => $text,
|
||||||
|
'limit'=> dol_strlen($text),
|
||||||
|
'graph'=> 1,
|
||||||
|
'sublink'=>$_SERVER["PHP_SELF"].'?action='.$refreshaction,
|
||||||
|
'subtext'=>$langs->trans("Refresh"),
|
||||||
|
'subpicto'=>'refresh.png',
|
||||||
|
'target'=>'none'
|
||||||
|
);
|
||||||
|
|
||||||
|
if ($user->rights->commande->lire)
|
||||||
|
{
|
||||||
|
include_once DOL_DOCUMENT_ROOT.'/core/class/dolgraph.class.php';
|
||||||
|
include_once DOL_DOCUMENT_ROOT.'/commande/class/commandestats.class.php';
|
||||||
|
|
||||||
|
$shownb=(! empty($conf->global->COMMANDE_BOX_GRAPH_SHOW_NB));
|
||||||
|
$showtot=(! isset($conf->global->COMMANDE_BOX_GRAPH_SHOW_TOT) || ! empty($conf->global->COMMANDE_BOX_GRAPH_SHOW_TOT));
|
||||||
|
$nowarray=dol_getdate(dol_now(),true);
|
||||||
|
$endyear=$nowarray['year'];
|
||||||
|
$startyear=$endyear-1;
|
||||||
|
$mode='customer';
|
||||||
|
$userid=0;
|
||||||
|
$WIDTH='256';
|
||||||
|
$HEIGHT='192';
|
||||||
|
|
||||||
|
$stats = new CommandeStats($this->db, 0, $mode, ($userid>0?$userid:0));
|
||||||
|
|
||||||
|
// Build graphic number of object. $data = array(array('Lib',val1,val2,val3),...)
|
||||||
|
if ($shownb)
|
||||||
|
{
|
||||||
|
$data1 = $stats->getNbByMonthWithPrevYear($endyear,$startyear,(GETPOST('action')==$refreshaction?-1:(3600*24)));
|
||||||
|
|
||||||
|
$filenamenb = $dir."/ordersnbinyear-".$year.".png";
|
||||||
|
if ($mode == 'customer') $fileurlnb = DOL_URL_ROOT.'/viewimage.php?modulepart=orderstats&file=ordersnbinyear-'.$year.'.png';
|
||||||
|
if ($mode == 'supplier') $fileurlnb = DOL_URL_ROOT.'/viewimage.php?modulepart=orderstatssupplier&file=ordersnbinyear-'.$year.'.png';
|
||||||
|
|
||||||
|
$px1 = new DolGraph();
|
||||||
|
$mesg = $px1->isGraphKo();
|
||||||
|
if (! $mesg)
|
||||||
|
{
|
||||||
|
$px1->SetData($data1);
|
||||||
|
unset($data1);
|
||||||
|
$px1->SetPrecisionY(0);
|
||||||
|
$i=$startyear;$legend=array();
|
||||||
|
while ($i <= $endyear)
|
||||||
|
{
|
||||||
|
$legend[]=$i;
|
||||||
|
$i++;
|
||||||
|
}
|
||||||
|
$px1->SetLegend($legend);
|
||||||
|
$px1->SetMaxValue($px1->GetCeilMaxValue());
|
||||||
|
$px1->SetWidth($WIDTH);
|
||||||
|
$px1->SetHeight($HEIGHT);
|
||||||
|
$px1->SetYLabel($langs->trans("NumberOfOrders"));
|
||||||
|
$px1->SetShading(3);
|
||||||
|
$px1->SetHorizTickIncrement(1);
|
||||||
|
$px1->SetPrecisionY(0);
|
||||||
|
$px1->SetCssPrefix("cssboxes");
|
||||||
|
$px1->mode='depth';
|
||||||
|
$px1->SetTitle($langs->trans("NumberOfOrdersByMonth"));
|
||||||
|
|
||||||
|
$px1->draw($filenamenb,$fileurlnb);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Build graphic number of object. $data = array(array('Lib',val1,val2,val3),...)
|
||||||
|
if ($showtot)
|
||||||
|
{
|
||||||
|
$data2 = $stats->getAmountByMonthWithPrevYear($endyear,$startyear,(GETPOST('action')==$refreshaction?-1:(3600*24)));
|
||||||
|
|
||||||
|
$filenamenb = $dir."/ordersamountinyear-".$year.".png";
|
||||||
|
if ($mode == 'customer') $fileurlnb = DOL_URL_ROOT.'/viewimage.php?modulepart=orderstats&file=ordersamountinyear-'.$year.'.png';
|
||||||
|
if ($mode == 'supplier') $fileurlnb = DOL_URL_ROOT.'/viewimage.php?modulepart=orderstatssupplier&file=ordersamountinyear-'.$year.'.png';
|
||||||
|
|
||||||
|
$px2 = new DolGraph();
|
||||||
|
$mesg = $px2->isGraphKo();
|
||||||
|
if (! $mesg)
|
||||||
|
{
|
||||||
|
$px2->SetData($data2);
|
||||||
|
unset($data2);
|
||||||
|
$px2->SetPrecisionY(0);
|
||||||
|
$i=$startyear;$legend=array();
|
||||||
|
while ($i <= $endyear)
|
||||||
|
{
|
||||||
|
$legend[]=$i;
|
||||||
|
$i++;
|
||||||
|
}
|
||||||
|
$px2->SetLegend($legend);
|
||||||
|
$px2->SetMaxValue($px2->GetCeilMaxValue());
|
||||||
|
$px2->SetWidth($WIDTH);
|
||||||
|
$px2->SetHeight($HEIGHT);
|
||||||
|
$px2->SetYLabel($langs->trans("AmountOfOrdersHT"));
|
||||||
|
$px2->SetShading(3);
|
||||||
|
$px2->SetHorizTickIncrement(1);
|
||||||
|
$px2->SetPrecisionY(0);
|
||||||
|
$px2->SetCssPrefix("cssboxes");
|
||||||
|
$px2->mode='depth';
|
||||||
|
$px2->SetTitle($langs->trans("AmountOfOrdersByMonthHT"));
|
||||||
|
|
||||||
|
$px2->draw($filenamenb,$fileurlnb);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (! $mesg)
|
||||||
|
{
|
||||||
|
if ($shownb && $showtot)
|
||||||
|
{
|
||||||
|
$stringtoshow ='<div class="fichecenter">';
|
||||||
|
$stringtoshow.='<div class="fichehalfleft">';
|
||||||
|
}
|
||||||
|
if ($shownb) $stringtoshow.=$px1->show();
|
||||||
|
if ($shownb && $showtot)
|
||||||
|
{
|
||||||
|
$stringtoshow.='</div>';
|
||||||
|
$stringtoshow.='<div class="fichehalfright">';
|
||||||
|
}
|
||||||
|
if ($showtot) $stringtoshow.=$px2->show();
|
||||||
|
if ($shownb && $showtot)
|
||||||
|
{
|
||||||
|
$stringtoshow.='</div>';
|
||||||
|
$stringtoshow.='</div>';
|
||||||
|
}
|
||||||
|
$this->info_box_contents[0][0] = array('td' => 'align="center"','textnoformat'=>$stringtoshow);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
$this->info_box_contents[0][0] = array( 'td' => 'align="left"',
|
||||||
|
'maxlength'=>500,
|
||||||
|
'text' => $mesg);
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
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);
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
?>
|
||||||
@ -100,13 +100,12 @@ class InfoBox
|
|||||||
// TODO PERF Do not make "dol_include_once" here, nor "new" later. This means, we must store a 'depends' field to store modules list, then
|
// TODO PERF Do not make "dol_include_once" here, nor "new" later. This means, we must store a 'depends' field to store modules list, then
|
||||||
// the "enabled" condition for modules forbidden for external users and the depends condition can be done.
|
// the "enabled" condition for modules forbidden for external users and the depends condition can be done.
|
||||||
// Goal is to avoid making a new instance for each boxes returned by select.
|
// Goal is to avoid making a new instance for each boxes returned by select.
|
||||||
|
|
||||||
dol_include_once($relsourcefile);
|
dol_include_once($relsourcefile);
|
||||||
if (class_exists($boxname))
|
if (class_exists($boxname))
|
||||||
{
|
{
|
||||||
$box=new $boxname($db,$obj->note); // Constructor may set properties like box->enabled. obj->note is note into box def, not user params.
|
$box=new $boxname($db,$obj->note); // Constructor may set properties like box->enabled. obj->note is note into box def, not user params.
|
||||||
//$box=new stdClass();
|
//$box=new stdClass();
|
||||||
|
|
||||||
// box properties
|
// box properties
|
||||||
$box->rowid = (empty($obj->rowid) ? '' : $obj->rowid);
|
$box->rowid = (empty($obj->rowid) ? '' : $obj->rowid);
|
||||||
$box->id = (empty($obj->box_id) ? '' : $obj->box_id);
|
$box->id = (empty($obj->box_id) ? '' : $obj->box_id);
|
||||||
@ -115,7 +114,8 @@ class InfoBox
|
|||||||
$box->fk_user = (empty($obj->fk_user) ? 0 : $obj->fk_user);
|
$box->fk_user = (empty($obj->fk_user) ? 0 : $obj->fk_user);
|
||||||
$box->sourcefile= $relsourcefile;
|
$box->sourcefile= $relsourcefile;
|
||||||
$box->class = $boxname;
|
$box->class = $boxname;
|
||||||
if ($mode == 'activated' && ! is_object($user)) // List of activated box was not yet personalized into database
|
|
||||||
|
if ($mode == 'activated' && ! is_object($user)) // List of activated box was not yet personalized into database
|
||||||
{
|
{
|
||||||
if (is_numeric($box->box_order))
|
if (is_numeric($box->box_order))
|
||||||
{
|
{
|
||||||
@ -126,9 +126,8 @@ class InfoBox
|
|||||||
// box_def properties
|
// box_def properties
|
||||||
$box->box_id = (empty($obj->box_id) ? '' : $obj->box_id);
|
$box->box_id = (empty($obj->box_id) ? '' : $obj->box_id);
|
||||||
$box->note = (empty($obj->note) ? '' : $obj->note);
|
$box->note = (empty($obj->note) ? '' : $obj->note);
|
||||||
|
|
||||||
// Filter on box->enabled (fused for example by box_comptes) and box->depends
|
// Filter on box->enabled (used for example by box_comptes) and box->depends
|
||||||
//$enabled=1;
|
|
||||||
$enabled=$box->enabled;
|
$enabled=$box->enabled;
|
||||||
if (isset($box->depends) && count($box->depends) > 0)
|
if (isset($box->depends) && count($box->depends) > 0)
|
||||||
{
|
{
|
||||||
|
|||||||
@ -2811,9 +2811,9 @@ function get_localtax($tva, $local, $thirdparty_buyer="", $thirdparty_seller="")
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($local == 2)
|
if ($local == 2)
|
||||||
{
|
{
|
||||||
|
|
||||||
if ($thirdparty_seller->id==$mysoc->id)
|
if ($thirdparty_seller->id==$mysoc->id)
|
||||||
{
|
{
|
||||||
if (! $thirdparty_buyer->localtax2_assuj) return 0;
|
if (! $thirdparty_buyer->localtax2_assuj) return 0;
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
<?php
|
<?php
|
||||||
/* Copyright (C) 2003-2005 Rodolphe Quiedeville <rodolphe@quiedeville.org>
|
/* Copyright (C) 2003-2005 Rodolphe Quiedeville <rodolphe@quiedeville.org>
|
||||||
* Copyright (C) 2004-2008 Laurent Destailleur <eldy@users.sourceforge.net>
|
* Copyright (C) 2004-2013 Laurent Destailleur <eldy@users.sourceforge.net>
|
||||||
* Copyright (C) 2004 Sebastien Di Cintio <sdicintio@ressource-toi.org>
|
* Copyright (C) 2004 Sebastien Di Cintio <sdicintio@ressource-toi.org>
|
||||||
* Copyright (C) 2004 Benoit Mortier <benoit.mortier@opensides.be>
|
* Copyright (C) 2004 Benoit Mortier <benoit.mortier@opensides.be>
|
||||||
* Copyright (C) 2004 Eric Seigne <eric.seigne@ryxeo.com>
|
* Copyright (C) 2004 Eric Seigne <eric.seigne@ryxeo.com>
|
||||||
@ -99,7 +99,7 @@ class modCommande extends DolibarrModules
|
|||||||
|
|
||||||
// Boites
|
// Boites
|
||||||
$this->boxes = array();
|
$this->boxes = array();
|
||||||
$this->boxes[0][1] = "box_commandes.php";
|
$this->boxes = array(0=>array('file'=>'box_commandes.php','enabledbydefaulton'=>'Home'),2=>array('file'=>'box_graph_orders_permonth.php','enabledbydefaulton'=>'Home'));
|
||||||
|
|
||||||
// Permissions
|
// Permissions
|
||||||
$this->rights = array();
|
$this->rights = array();
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
<?php
|
<?php
|
||||||
/* Copyright (C) 2003-2004 Rodolphe Quiedeville <rodolphe@quiedeville.org>
|
/* Copyright (C) 2003-2004 Rodolphe Quiedeville <rodolphe@quiedeville.org>
|
||||||
* Copyright (C) 2004-2010 Laurent Destailleur <eldy@users.sourceforge.net>
|
* Copyright (C) 2004-2013 Laurent Destailleur <eldy@users.sourceforge.net>
|
||||||
* Copyright (C) 2004 Sebastien Di Cintio <sdicintio@ressource-toi.org>
|
* Copyright (C) 2004 Sebastien Di Cintio <sdicintio@ressource-toi.org>
|
||||||
* Copyright (C) 2004 Benoit Mortier <benoit.mortier@opensides.be>
|
* Copyright (C) 2004 Benoit Mortier <benoit.mortier@opensides.be>
|
||||||
* Copyright (C) 2005-2012 Regis Houssin <regis.houssin@capnetworks.com>
|
* Copyright (C) 2005-2012 Regis Houssin <regis.houssin@capnetworks.com>
|
||||||
@ -30,7 +30,7 @@ include_once DOL_DOCUMENT_ROOT .'/core/modules/DolibarrModules.class.php';
|
|||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Classe de description et activation du module Facture
|
* Class to describe module customer invoices
|
||||||
*/
|
*/
|
||||||
class modFacture extends DolibarrModules
|
class modFacture extends DolibarrModules
|
||||||
{
|
{
|
||||||
|
|||||||
@ -82,7 +82,7 @@ NbOfOrders=Number of orders
|
|||||||
OrdersStatistics=Order's statistics
|
OrdersStatistics=Order's statistics
|
||||||
OrdersStatisticsSuppliers=Supplier order's statistics
|
OrdersStatisticsSuppliers=Supplier order's statistics
|
||||||
NumberOfOrdersByMonth=Number of orders by month
|
NumberOfOrdersByMonth=Number of orders by month
|
||||||
AmountOfOrdersByMonthHT=amount of orders by month (net of tax)
|
AmountOfOrdersByMonthHT=Amount of orders by month (net of tax)
|
||||||
ListOfOrders=List of orders
|
ListOfOrders=List of orders
|
||||||
CloseOrder=Close order
|
CloseOrder=Close order
|
||||||
ConfirmCloseOrder=Are you sure you want to set this order to deliverd ? Once an order is delivered, it can be set to billed.
|
ConfirmCloseOrder=Are you sure you want to set this order to deliverd ? Once an order is delivered, it can be set to billed.
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user