dolibarr  17.0.4
adherentstats.class.php
Go to the documentation of this file.
1 <?php
2 /* Copyright (C) 2003 Rodolphe Quiedeville <rodolphe@quiedeville.org>
3  * Copyright (c) 2005-2011 Laurent Destailleur <eldy@users.sourceforge.net>
4  * Copyright (C) 2005-2009 Regis Houssin <regis.houssin@inodbox.com>
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 3 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program. If not, see <https://www.gnu.org/licenses/>.
18  */
19 
26 include_once DOL_DOCUMENT_ROOT.'/core/class/stats.class.php';
27 include_once DOL_DOCUMENT_ROOT.'/adherents/class/subscription.class.php';
28 
29 
33 class AdherentStats extends Stats
34 {
38  public $table_element;
39 
40  public $memberid;
41  public $socid;
42  public $userid;
43 
44  public $from;
45  public $field;
46  public $where;
47 
48 
56  public function __construct($db, $socid = 0, $userid = 0)
57  {
58  global $conf;
59 
60  $this->db = $db;
61  $this->socid = $socid;
62  $this->userid = $userid;
63 
64  $object = new Subscription($this->db);
65 
66  $this->from = MAIN_DB_PREFIX.$object->table_element." as p";
67  $this->from .= ", ".MAIN_DB_PREFIX."adherent as m";
68 
69  $this->field = 'subscription';
70 
71  $this->where .= " m.statut != -1";
72  $this->where .= " AND p.fk_adherent = m.rowid AND m.entity IN (".getEntity('adherent').")";
73  //if (empty($user->rights->societe->client->voir) && !$user->socid) $this->where .= " AND p.fk_soc = sc.fk_soc AND sc.fk_user = " .((int) $user->id);
74  if ($this->memberid) {
75  $this->where .= " AND m.rowid = ".((int) $this->memberid);
76  }
77  //if ($this->userid > 0) $this->where .= " AND fk_user_author = ".((int) $this->userid);
78  }
79 
80 
88  public function getNbByMonth($year, $format = 0)
89  {
90  $sql = "SELECT date_format(p.dateadh,'%m') as dm, count(*)";
91  $sql .= " FROM ".$this->from;
92  //if (empty($user->rights->societe->client->voir) && !$user->socid) $sql.= ", ".MAIN_DB_PREFIX."societe_commerciaux as sc";
93  $sql .= " WHERE ".dolSqlDateFilter('p.dateadh', 0, 0, (int) $year, 1);
94  $sql .= " AND ".$this->where;
95  $sql .= " GROUP BY dm";
96  $sql .= $this->db->order('dm', 'DESC');
97 
98  return $this->_getNbByMonth($year, $sql, $format);
99  }
100 
106  public function getNbByYear()
107  {
108  $sql = "SELECT date_format(p.dateadh,'%Y') as dm, count(*)";
109  $sql .= " FROM ".$this->from;
110  //if (empty($user->rights->societe->client->voir) && !$user->socid) $sql.= ", ".MAIN_DB_PREFIX."societe_commerciaux as sc";
111  $sql .= " WHERE ".$this->where;
112  $sql .= " GROUP BY dm";
113  $sql .= $this->db->order('dm', 'DESC');
114 
115  return $this->_getNbByYear($sql);
116  }
117 
125  public function getAmountByMonth($year, $format = 0)
126  {
127  $sql = "SELECT date_format(p.dateadh,'%m') as dm, sum(p.".$this->field.")";
128  $sql .= " FROM ".$this->from;
129  //if (empty($user->rights->societe->client->voir) && !$user->socid) $sql.= ", ".MAIN_DB_PREFIX."societe_commerciaux as sc";
130  $sql .= " WHERE ".dolSqlDateFilter('p.dateadh', 0, 0, (int) $year, 1);
131  $sql .= " AND ".$this->where;
132  $sql .= " GROUP BY dm";
133  $sql .= $this->db->order('dm', 'DESC');
134 
135  return $this->_getAmountByMonth($year, $sql, $format);
136  }
137 
144  public function getAverageByMonth($year)
145  {
146  $sql = "SELECT date_format(p.dateadh,'%m') as dm, avg(p.".$this->field.")";
147  $sql .= " FROM ".$this->from;
148  //if (empty($user->rights->societe->client->voir) && !$this->socid) $sql.= ", ".MAIN_DB_PREFIX."societe_commerciaux as sc";
149  $sql .= " WHERE ".dolSqlDateFilter('p.dateadh', 0, 0, (int) $year, 1);
150  $sql .= " AND ".$this->where;
151  $sql .= " GROUP BY dm";
152  $sql .= $this->db->order('dm', 'DESC');
153 
154  return $this->_getAverageByMonth($year, $sql);
155  }
156 
157 
163  public function getAllByYear()
164  {
165  $sql = "SELECT date_format(p.dateadh,'%Y') as year, count(*) as nb, sum(".$this->field.") as total, avg(".$this->field.") as avg";
166  $sql .= " FROM ".$this->from;
167  //if (empty($user->rights->societe->client->voir) && !$this->socid) $sql.= ", ".MAIN_DB_PREFIX."societe_commerciaux as sc";
168  $sql .= " WHERE ".$this->where;
169  $sql .= " GROUP BY year";
170  $sql .= $this->db->order('year', 'DESC');
171 
172  return $this->_getAllByYear($sql);
173  }
174 }
Class to manage statistics of members.
getNbByMonth($year, $format=0)
Return the number of proposition by month for a given year.
getAllByYear()
Return nb, total and average.
__construct($db, $socid=0, $userid=0)
Constructor.
getNbByYear()
Return the number of subscriptions by year.
getAverageByMonth($year)
Return average amount each month.
getAmountByMonth($year, $format=0)
Return the number of subscriptions by month for a given year.
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...
Class to manage subscriptions of foundation members.
$conf db
API class for accounts.
Definition: inc.php:41