dolibarr  16.0.1
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 
139  public function getAllByYear()
140  {
141  global $user;
142 
143  $sql = "SELECT date_format(c.date_valid,'%Y') as year, COUNT(*) as nb, SUM(c.".$this->field.") as total, AVG(".$this->field.") as avg";
144  $sql .= " FROM ".$this->from;
145  if (empty($user->rights->societe->client->voir) && !$this->socid) {
146  $sql .= ", ".MAIN_DB_PREFIX."societe_commerciaux as sc";
147  }
148  $sql .= " WHERE ".$this->where;
149  $sql .= " GROUP BY year";
150  $sql .= $this->db->order('year', 'DESC');
151 
152  return $this->_getAllByYear($sql);
153  }
154 }
Parent class of statistics class.
Definition: stats.class.php:30
$conf db
API class for accounts.
Definition: inc.php:41
dol_get_first_day($year, $month=1, $gm=false)
Return GMT time for first day of a month or year.
Definition: date.lib.php:551
getNbByYear()
Return shipments number per year.
_getNbByMonth($year, $sql, $format=0)
Renvoie le nombre de documents par mois pour une annee donnee Return number of documents per month fo...
getNbByMonth($year, $format=0)
Return shipment number by month for a year.
Class to manage shipments.
_getAllByYear($sql)
Return nb of elements, total amount and avg amount each year.
dol_get_last_day($year, $month=12, $gm=false)
Return GMT time for last day of a month or year.
Definition: date.lib.php:570
__construct($db, $socid, $mode, $userid=0)
Constructor.
_getNbByYear($sql)
Return nb of elements by year.
Class to manage shipment statistics.
getAllByYear()
Return nb, total and average.