18include_once DOL_DOCUMENT_ROOT.
'/core/class/stats.class.php';
19include_once DOL_DOCUMENT_ROOT.
'/core/lib/date.lib.php';
59 $sql .=
" COUNT(t.rowid), t.priority";
60 $sql .=
" FROM ".MAIN_DB_PREFIX.
"projet_task as t INNER JOIN ".MAIN_DB_PREFIX.
"projet as p ON p.rowid = t.fk_projet";
61 if (!$user->hasRight(
'societe',
'client',
'voir') && !$user->socid) {
62 $sql .=
" INNER JOIN ".MAIN_DB_PREFIX.
"societe_commerciaux as sc ON sc.fk_soc=p.fk_soc AND sc.fk_user=".((int) $user->id);
66 $sql .=
" GROUP BY t.priority";
70 dol_syslog(get_class($this).
'::'.__METHOD__, LOG_DEBUG);
71 $resql = $this->db->query($sql);
73 $num = $this->db->num_rows($resql);
77 $row = $this->db->fetch_row($resql);
78 if ($i < $limit || $num == $limit) {
90 $langs->transnoentitiesnoconv(
"Other"),
94 $this->db->free($resql);
96 $this->error =
"Error ".$this->db->lasterror();
97 dol_syslog(get_class($this).
'::'.__METHOD__.
' '.$this->error, LOG_ERR);
113 $sql =
"SELECT date_format(t.datec,'%Y') as year, COUNT(t.rowid) as nb";
114 $sql .=
" FROM ".MAIN_DB_PREFIX.
"projet_task as t INNER JOIN ".MAIN_DB_PREFIX.
"projet as p ON p.rowid = t.fk_projet";
115 if (!$user->hasRight(
'societe',
'client',
'voir') && !$user->socid) {
116 $sql .=
" INNER JOIN ".MAIN_DB_PREFIX.
"societe_commerciaux as sc ON sc.fk_soc=p.fk_soc AND sc.fk_user=".((int) $user->id);
119 $sql .=
" GROUP BY year";
120 $sql .= $this->db->order(
'year',
'DESC');
136 $sqlwhere[] =
' t.entity IN ('.getEntity(
'project').
')';
138 if (!empty($this->userid)) {
139 $sqlwhere[] =
' t.fk_user_resp = '.((int) $this->userid);
142 if (!empty($this->socid)) {
143 $sqlwhere[] =
' p.fk_soc = '.((int) $this->socid);
145 if (!empty($this->year) && empty($this->month)) {
148 if (!empty($this->year) && !empty($this->month)) {
149 $sqlwhere[] =
" t.datec BETWEEN '".$this->db->idate(
dol_get_first_day($this->year, $this->month)).
"' AND '".$this->db->idate(
dol_get_last_day($this->year, $this->month)).
"'";
151 if (!empty($this->priority)) {
152 $sqlwhere[] =
" t.priority IN (".$this->db->sanitize($this->priority, 1).
")";
155 if (count($sqlwhere) > 0) {
156 $sqlwhere_str =
' WHERE '.implode(
' AND ', $sqlwhere);
159 return $sqlwhere_str;
175 $sql =
"SELECT date_format(t.datec,'%m') as dm, COUNT(t.rowid) as nb";
176 $sql .=
" FROM ".MAIN_DB_PREFIX.
"projet_task as t INNER JOIN ".MAIN_DB_PREFIX.
"projet as p ON p.rowid = t.fk_projet";
177 if (!$user->hasRight(
'societe',
'client',
'voir') && !$user->socid) {
178 $sql .=
" INNER JOIN ".MAIN_DB_PREFIX.
"societe_commerciaux as sc ON sc.fk_soc=p.fk_soc AND sc.fk_user=".((int) $user->id);
181 $sql .=
" GROUP BY dm";
182 $sql .= $this->db->order(
'dm',
'DESC');
210 $sql =
"SELECT date_format(datef,'%m') as dm, AVG(f.".$this->field.
")";
211 $sql .=
" FROM ".$this->from;
213 $sql .=
" AND ".$this->where;
214 $sql .=
" GROUP BY dm";
215 $sql .= $this->db->order(
'dm',
'DESC');
Parent class of statistics class.
_getAverageByMonth($year, $sql, $format=0)
Renvoie le montant moyen par mois pour une annee donnee Return the amount average par month for a giv...
_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 statistics on project tasks.
getAllTaskByStatus($limit=5)
Return all tasks grouped by status.
getAverageByMonth($year)
Return average of entity by month.
getAmountByMonth($year, $format=0)
Return the Task amount by month for a year.
buildWhere()
Build the where part.
getAllByYear()
Return count, and sum of products.
getNbByMonth($year, $format=0)
Return Task number by month for a year.
__construct($db)
Constructor of the class.
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.
dol_syslog($message, $level=LOG_INFO, $ident=0, $suffixinfilename='', $restricttologhandler='', $logcontext=null)
Write log message into outputs.