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)
90 $this->socid = ($socid > 0 ? $socid : 0);
91 $this->userid = $userid;
94 if ($mode ==
'customer') {
97 $this->from = MAIN_DB_PREFIX.$object->table_element.
" as p";
98 $this->from_line = MAIN_DB_PREFIX.$object->table_element_line.
" as tl";
99 $this->field_date =
'p.datep';
100 $this->field =
'total_ht';
101 $this->field_line =
'total_ht';
105 if ($mode ==
'supplier') {
108 $this->from = MAIN_DB_PREFIX.$object->table_element.
" as p";
109 $this->from_line = MAIN_DB_PREFIX.$object->table_element_line.
" as tl";
110 $this->field_date =
'p.date_valid';
111 $this->field =
'total_ht';
112 $this->field_line =
'total_ht';
117 $this->where .= ($this->where ?
' AND ' :
'').
"p.entity IN (".
getEntity(
'propal').
")";
119 $this->where .=
" AND p.fk_soc = ".((int) $this->socid);
121 if ($this->userid > 0) {
122 $this->where .=
' AND fk_user_author = '.((int) $this->userid);
126 $this->join .=
' LEFT JOIN '.MAIN_DB_PREFIX.
'societe as s ON s.rowid = p.fk_soc';
127 $this->where .=
' AND s.fk_typent = '.((int) $typentid);
131 $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).
')';
134 $parameters = array(
'socid' => $socid);
135 $hookmanager->executeHooks(
'printFieldListWhere', $parameters,
$object);
136 $this->where .= $hookmanager->resPrint;
151 $sql =
"SELECT date_format(".$this->db->sanitize($this->field_date).
", '%m') as dm, COUNT(*) as nb";
152 $sql .=
" FROM ".$this->db->sanitize($this->from, 0, 1, 1);
153 if (empty($user->socid) && !$user->hasRight(
'societe',
'client',
'voir')) {
154 $sql .=
" INNER JOIN ".MAIN_DB_PREFIX.
"societe_commerciaux as sc ON p.fk_soc = sc.fk_soc AND sc.fk_user = ".((int) $user->id);
158 $sql .=
" AND ".$this->where;
159 $sql .=
" GROUP BY dm";
160 $sql .= $this->db->order(
'dm',
'DESC');
174 $sql =
"SELECT date_format(".$this->db->sanitize($this->field_date).
", '%Y') as dm, COUNT(*) as nb, SUM(c.".$this->db->sanitize($this->field).
")";
175 $sql .=
" FROM ".$this->db->sanitize($this->from, 0, 1, 1);
176 if (empty($user->socid) && !$user->hasRight(
'societe',
'client',
'voir')) {
177 $sql .=
" INNER JOIN ".MAIN_DB_PREFIX.
"societe_commerciaux as sc ON p.fk_soc = sc.fk_soc AND sc.fk_user = ".((int) $user->id);
180 $sql .=
" WHERE ".$this->where;
181 $sql .=
" GROUP BY dm";
182 $sql .= $this->db->order(
'dm',
'DESC');
198 $sql =
"SELECT date_format(".$this->db->sanitize($this->field_date).
", '%m') as dm, SUM(p.".$this->db->sanitize($this->field).
")";
199 $sql .=
" FROM ".$this->db->sanitize($this->from, 0, 1, 1);
200 if (empty($user->socid) && !$user->hasRight(
'societe',
'client',
'voir')) {
201 $sql .=
" INNER JOIN ".MAIN_DB_PREFIX.
"societe_commerciaux as sc ON p.fk_soc = sc.fk_soc AND sc.fk_user = ".((int) $user->id);
205 $sql .=
" AND ".$this->where;
206 $sql .=
" GROUP BY dm";
207 $sql .= $this->db->order(
'dm',
'DESC');
223 $sql =
"SELECT date_format(".$this->db->sanitize($this->field_date).
", '%m') as dm, AVG(p.".$this->db->sanitize($this->field).
")";
224 $sql .=
" FROM ".$this->db->sanitize($this->from, 0, 1, 1);
225 if (empty($user->socid) && !$user->hasRight(
'societe',
'client',
'voir')) {
226 $sql .=
" INNER JOIN ".MAIN_DB_PREFIX.
"societe_commerciaux as sc ON p.fk_soc = sc.fk_soc AND sc.fk_user = ".((int) $user->id);
230 $sql .=
" AND ".$this->where;
231 $sql .=
" GROUP BY dm";
232 $sql .= $this->db->order(
'dm',
'DESC');
246 $sql =
"SELECT date_format(".$this->db->sanitize($this->field_date).
", '%Y') as year, COUNT(*) as nb, SUM(".$this->db->sanitize($this->field).
") as total, AVG(".$this->db->sanitize($this->field).
") as avg";
247 $sql .=
" FROM ".$this->db->sanitize($this->from, 0, 1, 1);
248 if (empty($user->socid) && !$user->hasRight(
'societe',
'client',
'voir')) {
249 $sql .=
" INNER JOIN ".MAIN_DB_PREFIX.
"societe_commerciaux as sc ON p.fk_soc = sc.fk_soc AND sc.fk_user = ".((int) $user->id);
252 $sql .=
" WHERE ".$this->where;
253 $sql .=
" GROUP BY year";
254 $sql .= $this->db->order(
'year',
'DESC');
271 $sql =
"SELECT product.ref, COUNT(product.ref) as nb, SUM(tl.".$this->db->sanitize($this->field_line).
") as total, AVG(tl.".$this->db->sanitize($this->field_line).
") as avg";
272 $sql .=
" FROM ".$this->db->sanitize($this->from, 0, 1, 1);
273 $sql .=
" INNER JOIN ".$this->db->sanitize($this->from_line, 0, 0, 1).
" ON p.rowid = tl.fk_propal";
274 $sql .=
" INNER JOIN ".MAIN_DB_PREFIX.
"product as product ON tl.fk_product = product.rowid";
275 if (empty($user->socid) && !$user->hasRight(
'societe',
'client',
'voir')) {
276 $sql .=
" INNER JOIN ".MAIN_DB_PREFIX.
"societe_commerciaux as sc ON p.fk_soc = sc.fk_soc AND sc.fk_user = ".((int) $user->id);
279 $sql .=
" WHERE ".$this->where;
280 $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)).
"'";
281 $sql .=
" GROUP BY product.ref";
282 $sql .= $this->db->order(
'nb',
'DESC');
if(! $sortfield) if(! $sortorder) $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)
Return number of documents per month for a given year.
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.