dolibarr  16.0.5
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 $user, $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  global $user;
91 
92  $sql = "SELECT date_format(p.dateadh,'%m') as dm, count(*)";
93  $sql .= " FROM ".$this->from;
94  //if (empty($user->rights->societe->client->voir) && !$user->socid) $sql.= ", ".MAIN_DB_PREFIX."societe_commerciaux as sc";
95  $sql .= " WHERE ".dolSqlDateFilter('p.dateadh', 0, 0, (int) $year, 1);
96  $sql .= " AND ".$this->where;
97  $sql .= " GROUP BY dm";
98  $sql .= $this->db->order('dm', 'DESC');
99 
100  return $this->_getNbByMonth($year, $sql, $format);
101  }
102 
108  public function getNbByYear()
109  {
110  global $user;
111 
112  $sql = "SELECT date_format(p.dateadh,'%Y') as dm, count(*)";
113  $sql .= " FROM ".$this->from;
114  //if (empty($user->rights->societe->client->voir) && !$user->socid) $sql.= ", ".MAIN_DB_PREFIX."societe_commerciaux as sc";
115  $sql .= " WHERE ".$this->where;
116  $sql .= " GROUP BY dm";
117  $sql .= $this->db->order('dm', 'DESC');
118 
119  return $this->_getNbByYear($sql);
120  }
121 
129  public function getAmountByMonth($year, $format = 0)
130  {
131  global $user;
132 
133  $sql = "SELECT date_format(p.dateadh,'%m') as dm, sum(p.".$this->field.")";
134  $sql .= " FROM ".$this->from;
135  //if (empty($user->rights->societe->client->voir) && !$user->socid) $sql.= ", ".MAIN_DB_PREFIX."societe_commerciaux as sc";
136  $sql .= " WHERE ".dolSqlDateFilter('p.dateadh', 0, 0, (int) $year, 1);
137  $sql .= " AND ".$this->where;
138  $sql .= " GROUP BY dm";
139  $sql .= $this->db->order('dm', 'DESC');
140 
141  return $this->_getAmountByMonth($year, $sql, $format);
142  }
143 
150  public function getAverageByMonth($year)
151  {
152  global $user;
153 
154  $sql = "SELECT date_format(p.dateadh,'%m') as dm, avg(p.".$this->field.")";
155  $sql .= " FROM ".$this->from;
156  //if (empty($user->rights->societe->client->voir) && !$this->socid) $sql.= ", ".MAIN_DB_PREFIX."societe_commerciaux as sc";
157  $sql .= " WHERE ".dolSqlDateFilter('p.dateadh', 0, 0, (int) $year, 1);
158  $sql .= " AND ".$this->where;
159  $sql .= " GROUP BY dm";
160  $sql .= $this->db->order('dm', 'DESC');
161 
162  return $this->_getAverageByMonth($year, $sql);
163  }
164 
165 
171  public function getAllByYear()
172  {
173  global $user;
174 
175  $sql = "SELECT date_format(p.dateadh,'%Y') as year, count(*) as nb, sum(".$this->field.") as total, avg(".$this->field.") as avg";
176  $sql .= " FROM ".$this->from;
177  //if (empty($user->rights->societe->client->voir) && !$this->socid) $sql.= ", ".MAIN_DB_PREFIX."societe_commerciaux as sc";
178  $sql .= " WHERE ".$this->where;
179  $sql .= " GROUP BY year";
180  $sql .= $this->db->order('year', 'DESC');
181 
182  return $this->_getAllByYear($sql);
183  }
184 }
db
$conf db
API class for accounts.
Definition: inc.php:41
AdherentStats\getAllByYear
getAllByYear()
Return nb, total and average.
Definition: adherentstats.class.php:171
AdherentStats\getAverageByMonth
getAverageByMonth($year)
Return average amount each month.
Definition: adherentstats.class.php:150
AdherentStats\getNbByYear
getNbByYear()
Return the number of subscriptions by year.
Definition: adherentstats.class.php:108
Stats
Parent class of statistics class.
Definition: stats.class.php:30
Stats\_getNbByYear
_getNbByYear($sql)
Return nb of elements by year.
Definition: stats.class.php:355
Stats\_getAmountByMonth
_getAmountByMonth($year, $sql, $format=0)
Return the amount per month for a given year.
Definition: stats.class.php:492
AdherentStats\getAmountByMonth
getAmountByMonth($year, $format=0)
Return the number of subscriptions by month for a given year.
Definition: adherentstats.class.php:129
AdherentStats
Class to manage statistics of members.
Definition: adherentstats.class.php:33
Stats\_getAllByYear
_getAllByYear($sql)
Return nb of elements, total amount and avg amount each year.
Definition: stats.class.php:384
Subscription
Class to manage subscriptions of foundation members.
Definition: subscription.class.php:33
AdherentStats\__construct
__construct($db, $socid=0, $userid=0)
Constructor.
Definition: adherentstats.class.php:56
Stats\_getNbByMonth
_getNbByMonth($year, $sql, $format=0)
Renvoie le nombre de documents par mois pour une annee donnee Return number of documents per month fo...
Definition: stats.class.php:435
AdherentStats\getNbByMonth
getNbByMonth($year, $format=0)
Return the number of proposition by month for a given year.
Definition: adherentstats.class.php:88
Stats\_getAverageByMonth
_getAverageByMonth($year, $sql, $format=0)
Renvoie le montant moyen par mois pour une annee donnee Return the amount average par month for a giv...
Definition: stats.class.php:550