dolibarr  17.0.4
expeditionstats.class.php
Go to the documentation of this file.
1 <?php
2 /* Copyright (C) 2003 Rodolphe Quiedeville <rodolphe@quiedeville.org>
3  * Copyright (c) 2005-2013 Laurent Destailleur <eldy@users.sourceforge.net>
4  * Copyright (C) 2005-2009 Regis Houssin <regis.houssin@inodbox.com>
5  * Copyright (C) 2011 Juanjo Menent <jmenent@2byte.es>
6  *
7  * This program is free software; you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation; either version 3 of the License, or
10  * (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with this program. If not, see <https://www.gnu.org/licenses/>.
19  */
20 
27 include_once DOL_DOCUMENT_ROOT.'/core/class/stats.class.php';
28 include_once DOL_DOCUMENT_ROOT.'/expedition/class/expedition.class.php';
29 include_once DOL_DOCUMENT_ROOT.'/core/lib/date.lib.php';
30 
31 
35 class ExpeditionStats extends Stats
36 {
40  public $table_element;
41 
42  public $socid;
43  public $userid;
44 
45  public $from;
46  public $field;
47  public $where;
48 
49 
58  public function __construct($db, $socid, $mode, $userid = 0)
59  {
60  global $user, $conf;
61 
62  $this->db = $db;
63 
64  $this->socid = ($socid > 0 ? $socid : 0);
65  $this->userid = $userid;
66  $this->cachefilesuffix = $mode;
67 
68  $object = new Expedition($this->db);
69  $this->from = MAIN_DB_PREFIX.$object->table_element." as c";
70  //$this->from.= ", ".MAIN_DB_PREFIX."societe as s";
71  $this->field = 'weight'; // Warning, unit of weight is NOT USED AND MUST BE
72  $this->where .= " c.fk_statut > 0"; // Not draft and not cancelled
73 
74  //$this->where.= " AND c.fk_soc = s.rowid AND c.entity = ".$conf->entity;
75  $this->where .= " AND c.entity = ".$conf->entity;
76  if (empty($user->rights->societe->client->voir) && !$this->socid) {
77  $this->where .= " AND c.fk_soc = sc.fk_soc AND sc.fk_user = ".((int) $user->id);
78  }
79  if ($this->socid) {
80  $this->where .= " AND c.fk_soc = ".((int) $this->socid);
81  }
82  if ($this->userid > 0) {
83  $this->where .= ' AND c.fk_user_author = '.((int) $this->userid);
84  }
85  }
86 
94  public function getNbByMonth($year, $format = 0)
95  {
96  global $user;
97 
98  $sql = "SELECT date_format(c.date_valid,'%m') as dm, COUNT(*) as nb";
99  $sql .= " FROM ".$this->from;
100  if (empty($user->rights->societe->client->voir) && !$this->socid) {
101  $sql .= ", ".MAIN_DB_PREFIX."societe_commerciaux as sc";
102  }
103  $sql .= " WHERE c.date_valid BETWEEN '".$this->db->idate(dol_get_first_day($year))."' AND '".$this->db->idate(dol_get_last_day($year))."'";
104  $sql .= " AND ".$this->where;
105  $sql .= " GROUP BY dm";
106  $sql .= $this->db->order('dm', 'DESC');
107 
108  $res = $this->_getNbByMonth($year, $sql, $format);
109  return $res;
110  }
111 
118  public function getNbByYear()
119  {
120  global $user;
121 
122  $sql = "SELECT date_format(c.date_valid,'%Y') as dm, COUNT(*) as nb, SUM(c.".$this->field.")";
123  $sql .= " FROM ".$this->from;
124  if (empty($user->rights->societe->client->voir) && !$this->socid) {
125  $sql .= ", ".MAIN_DB_PREFIX."societe_commerciaux as sc";
126  }
127  $sql .= " WHERE ".$this->where;
128  $sql .= " GROUP BY dm";
129  $sql .= $this->db->order('dm', 'DESC');
130 
131  return $this->_getNbByYear($sql);
132  }
133 
141  public function getAmountByMonth($year, $format = 0)
142  {
143  global $user;
144 
145  $sql = "SELECT date_format(c.date_valid,'%m') as dm, SUM(c.".$this->field.")";
146  $sql .= " FROM ".$this->from;
147  if (empty($user->rights->societe->client->voir) && !$this->socid) {
148  $sql .= ", ".MAIN_DB_PREFIX."societe_commerciaux as sc";
149  }
150  $sql .= $this->join;
151  $sql .= " WHERE ".$this->where;
152  $sql .= " GROUP BY dm";
153  $sql .= $this->db->order('dm', 'DESC');
154 
155  $res = $this->_getAmountByMonth($year, $sql, $format);
156  return $res;
157  }
158 
165  public function getAverageByMonth($year)
166  {
167  global $user;
168 
169  $sql = "SELECT date_format(c.date_valid,'%m') as dm, AVG(c.".$this->field.")";
170  $sql .= " FROM ".$this->from;
171  if (empty($user->rights->societe->client->voir) && !$this->socid) {
172  $sql .= ", ".MAIN_DB_PREFIX."societe_commerciaux as sc";
173  }
174  $sql .= $this->join;
175  $sql .= " WHERE ".$this->where;
176  $sql .= " GROUP BY dm";
177  $sql .= $this->db->order('dm', 'DESC');
178 
179  return $this->_getAverageByMonth($year, $sql);
180  }
181 
187  public function getAllByYear()
188  {
189  global $user;
190 
191  $sql = "SELECT date_format(c.date_valid,'%Y') as year, COUNT(*) as nb, SUM(c.".$this->field.") as total, AVG(".$this->field.") as avg";
192  $sql .= " FROM ".$this->from;
193  if (empty($user->rights->societe->client->voir) && !$this->socid) {
194  $sql .= ", ".MAIN_DB_PREFIX."societe_commerciaux as sc";
195  }
196  $sql .= " WHERE ".$this->where;
197  $sql .= " GROUP BY year";
198  $sql .= $this->db->order('year', 'DESC');
199 
200  return $this->_getAllByYear($sql);
201  }
202 }
Class to manage shipments.
Class to manage shipment statistics.
getNbByMonth($year, $format=0)
Return shipment number by month for a year.
__construct($db, $socid, $mode, $userid=0)
Constructor.
getAverageByMonth($year)
Return the orders amount average by month for a year.
getAmountByMonth($year, $format=0)
Return the orders amount by month for a year.
getNbByYear()
Return shipments number per year.
getAllByYear()
Return nb, total and average.
Parent class of statistics class.
Definition: stats.class.php:31
_getAverageByMonth($year, $sql, $format=0)
Renvoie le montant moyen par mois pour une annee donnee Return the amount average par month for a giv...
_getAmountByMonth($year, $sql, $format=0)
Return the amount per month for a given year.
_getNbByYear($sql)
Return nb of elements by year.
_getAllByYear($sql)
Return nb of elements, total amount and avg amount each year.
_getNbByMonth($year, $sql, $format=0)
Renvoie le nombre de documents par mois pour une annee donnee Return number of documents per month fo...
dol_get_first_day($year, $month=1, $gm=false)
Return GMT time for first day of a month or year.
Definition: date.lib.php:575
dol_get_last_day($year, $month=12, $gm=false)
Return GMT time for last day of a month or year.
Definition: date.lib.php:594
$conf db
API class for accounts.
Definition: inc.php:41