29include_once DOL_DOCUMENT_ROOT.
'/core/class/stats.class.php';
30include_once DOL_DOCUMENT_ROOT.
'/comm/propal/class/propal.class.php';
31include_once DOL_DOCUMENT_ROOT.
'/supplier_proposal/class/supplier_proposal.class.php';
32include_once DOL_DOCUMENT_ROOT.
'/core/lib/date.lib.php';
43 public $table_element;
86 public function __construct($db, $socid = 0, $userid = 0, $mode =
'customer', $typentid = 0, $categid = 0)
89 $this->socid = ($socid > 0 ? $socid : 0);
90 $this->userid = $userid;
93 if ($mode ==
'customer') {
96 $this->from = MAIN_DB_PREFIX.$object->table_element.
" as p";
97 $this->from_line = MAIN_DB_PREFIX.$object->table_element_line.
" as tl";
98 $this->field_date =
'p.datep';
99 $this->field =
'total_ht';
100 $this->field_line =
'total_ht';
104 if ($mode ==
'supplier') {
107 $this->from = MAIN_DB_PREFIX.$object->table_element.
" as p";
108 $this->from_line = MAIN_DB_PREFIX.$object->table_element_line.
" as tl";
109 $this->field_date =
'p.date_valid';
110 $this->field =
'total_ht';
111 $this->field_line =
'total_ht';
116 $this->where .= ($this->where ?
' AND ' :
'').
"p.entity IN (".
getEntity(
'propal').
")";
118 $this->where .=
" AND p.fk_soc = ".((int) $this->socid);
120 if ($this->userid > 0) {
121 $this->where .=
' AND fk_user_author = '.((int) $this->userid);
125 $this->join .=
' LEFT JOIN '.MAIN_DB_PREFIX.
'societe as s ON s.rowid = p.fk_soc';
126 $this->where .=
' AND s.fk_typent = '.((int) $typentid);
130 $this->where .=
' AND EXISTS (SELECT rowid FROM '.MAIN_DB_PREFIX.
'categorie_societe as cats WHERE cats.fk_soc = p.fk_soc AND cats.fk_categorie = '.((int) $categid).
')';
146 $sql =
"SELECT date_format(".$this->field_date.
",'%m') as dm, COUNT(*) as nb";
147 $sql .=
" FROM ".$this->from;
148 if (!$user->hasRight(
'societe',
'client',
'voir')) {
149 $sql .=
" INNER JOIN ".MAIN_DB_PREFIX.
"societe_commerciaux as sc ON p.fk_soc = sc.fk_soc AND sc.fk_user = ".((int) $user->id);
153 $sql .=
" AND ".$this->where;
154 $sql .=
" GROUP BY dm";
155 $sql .= $this->db->order(
'dm',
'DESC');
171 $sql =
"SELECT date_format(".$this->field_date.
",'%Y') as dm, COUNT(*) as nb, SUM(c.".$this->field.
")";
172 $sql .=
" FROM ".$this->from;
173 if (!$user->hasRight(
'societe',
'client',
'voir')) {
174 $sql .=
" INNER JOIN ".MAIN_DB_PREFIX.
"societe_commerciaux as sc ON p.fk_soc = sc.fk_soc AND sc.fk_user = ".((int) $user->id);
177 $sql .=
" WHERE ".$this->where;
178 $sql .=
" GROUP BY dm";
179 $sql .= $this->db->order(
'dm',
'DESC');
195 $sql =
"SELECT date_format(".$this->field_date.
",'%m') as dm, SUM(p.".$this->field.
")";
196 $sql .=
" FROM ".$this->from;
197 if (!$user->hasRight(
'societe',
'client',
'voir')) {
198 $sql .=
" INNER JOIN ".MAIN_DB_PREFIX.
"societe_commerciaux as sc ON p.fk_soc = sc.fk_soc AND sc.fk_user = ".((int) $user->id);
202 $sql .=
" AND ".$this->where;
203 $sql .=
" GROUP BY dm";
204 $sql .= $this->db->order(
'dm',
'DESC');
220 $sql =
"SELECT date_format(".$this->field_date.
",'%m') as dm, AVG(p.".$this->field.
")";
221 $sql .=
" FROM ".$this->from;
222 if (!$user->hasRight(
'societe',
'client',
'voir')) {
223 $sql .=
" INNER JOIN ".MAIN_DB_PREFIX.
"societe_commerciaux as sc ON p.fk_soc = sc.fk_soc AND sc.fk_user = ".((int) $user->id);
227 $sql .=
" AND ".$this->where;
228 $sql .=
" GROUP BY dm";
229 $sql .= $this->db->order(
'dm',
'DESC');
243 $sql =
"SELECT date_format(".$this->field_date.
",'%Y') as year, COUNT(*) as nb, SUM(".$this->field.
") as total, AVG(".$this->field.
") as avg";
244 $sql .=
" FROM ".$this->from;
245 if (!$user->hasRight(
'societe',
'client',
'voir')) {
246 $sql .=
" INNER JOIN ".MAIN_DB_PREFIX.
"societe_commerciaux as sc ON p.fk_soc = sc.fk_soc AND sc.fk_user = ".((int) $user->id);
249 $sql .=
" WHERE ".$this->where;
250 $sql .=
" GROUP BY year";
251 $sql .= $this->db->order(
'year',
'DESC');
268 $sql =
"SELECT product.ref, COUNT(product.ref) as nb, SUM(tl.".$this->field_line.
") as total, AVG(tl.".$this->field_line.
") as avg";
269 $sql .=
" FROM ".$this->from;
270 $sql .=
" INNER JOIN ".$this->from_line.
" ON p.rowid = tl.fk_propal";
271 $sql .=
" INNER JOIN ".MAIN_DB_PREFIX.
"product as product ON tl.fk_product = product.rowid";
272 if (!$user->hasRight(
'societe',
'client',
'voir')) {
273 $sql .=
" INNER JOIN ".MAIN_DB_PREFIX.
"societe_commerciaux as sc ON p.fk_soc = sc.fk_soc AND sc.fk_user = ".((int) $user->id);
276 $sql .=
" WHERE ".$this->where;
277 $sql .=
" AND ".$this->field_date.
" BETWEEN '".$this->db->idate(
dol_get_first_day($year, 1,
false)).
"' AND '".$this->db->idate(
dol_get_last_day($year, 12,
false)).
"'";
278 $sql .=
" GROUP BY product.ref";
279 $sql .= $this->db->order(
'nb',
'DESC');
if( $user->socid > 0) if(! $user->hasRight('accounting', 'chartofaccount')) $object
Class to manage proposals.
Class to manage proposals statistics.
getAllByYear()
Return nb, total and average.
getAverageByMonth($year)
Return the propals amount average by month for a year.
getAllByProduct($year, $limit=10)
Return nb, amount of predefined product for year.
getAmountByMonth($year, $format=0)
Return the propals amount by month for a year.
getNbByMonth($year, $format=0)
Return propals number by month for a year.
__construct($db, $socid=0, $userid=0, $mode='customer', $typentid=0, $categid=0)
Constructor.
getNbByYear()
Return propals number per year.
Parent class of statistics class.
_getAverageByMonth($year, $sql, $format=0)
Return the amount average par month for a given year.
_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.
_getAllByProduct($sql, $limit=10)
Return number or total of product refs.
_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 price ask supplier.
dol_get_first_day($year, $month=1, $gm=false)
Return GMT time for first day of a month or year.
dol_get_last_day($year, $month=12, $gm=false)
Return GMT time for last day of a month or year.
getEntity($element, $shared=1, $currentobject=null)
Get list of entity id to use.