18include_once DOL_DOCUMENT_ROOT.
'/core/class/stats.class.php';
19include_once DOL_DOCUMENT_ROOT.
'/core/lib/date.lib.php';
56 $sql .=
" COUNT(t.rowid), t.priority";
57 $sql .=
" FROM ".MAIN_DB_PREFIX.
"projet_task as t INNER JOIN ".MAIN_DB_PREFIX.
"projet as p ON p.rowid = t.fk_projet";
58 if (empty($user->rights->societe->client->voir) && !$user->soc_id) {
59 $sql .=
" INNER JOIN ".MAIN_DB_PREFIX.
"societe_commerciaux as sc ON sc.fk_soc=p.fk_soc AND sc.fk_user=".((int) $user->id);
63 $sql .=
" GROUP BY t.priority";
67 dol_syslog(get_class($this).
'::'.__METHOD__, LOG_DEBUG);
68 $resql = $this->db->query($sql);
70 $num = $this->db->num_rows($resql);
74 $row = $this->db->fetch_row($resql);
75 if ($i < $limit || $num == $limit) {
87 $langs->transnoentitiesnoconv(
"Other"),
91 $this->db->free($resql);
93 $this->error =
"Error ".$this->db->lasterror();
94 dol_syslog(get_class($this).
'::'.__METHOD__.
' '.$this->error, LOG_ERR);
110 $sql =
"SELECT date_format(t.datec,'%Y') as year, COUNT(t.rowid) as nb";
111 $sql .=
" FROM ".MAIN_DB_PREFIX.
"projet_task as t INNER JOIN ".MAIN_DB_PREFIX.
"projet as p ON p.rowid = t.fk_projet";
112 if (empty($user->rights->societe->client->voir) && !$user->soc_id) {
113 $sql .=
" INNER JOIN ".MAIN_DB_PREFIX.
"societe_commerciaux as sc ON sc.fk_soc=p.fk_soc AND sc.fk_user=".((int) $user->id);
116 $sql .=
" GROUP BY year";
117 $sql .= $this->db->order(
'year',
'DESC');
133 $sqlwhere[] =
' t.entity IN ('.getEntity(
'project').
')';
135 if (!empty($this->userid)) {
136 $sqlwhere[] =
' t.fk_user_resp = '.((int) $this->userid);
139 if (!empty($this->socid)) {
140 $sqlwhere[] =
' p.fk_soc = '.((int) $this->socid);
142 if (!empty($this->year) && empty($this->month)) {
145 if (!empty($this->year) && !empty($this->month)) {
146 $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)).
"'";
148 if (!empty($this->priority)) {
149 $sqlwhere[] =
" t.priority IN (".$this->db->sanitize($this->priority, 1).
")";
152 if (count($sqlwhere) > 0) {
153 $sqlwhere_str =
' WHERE '.implode(
' AND ', $sqlwhere);
156 return $sqlwhere_str;
172 $sql =
"SELECT date_format(t.datec,'%m') as dm, COUNT(t.rowid) as nb";
173 $sql .=
" FROM ".MAIN_DB_PREFIX.
"projet_task as t INNER JOIN ".MAIN_DB_PREFIX.
"projet as p ON p.rowid = t.fk_projet";
174 if (empty($user->rights->societe->client->voir) && !$user->soc_id) {
175 $sql .=
" INNER JOIN ".MAIN_DB_PREFIX.
"societe_commerciaux as sc ON sc.fk_soc=p.fk_soc AND sc.fk_user=".((int) $user->id);
178 $sql .=
" GROUP BY dm";
179 $sql .= $this->db->order(
'dm',
'DESC');
207 $sql =
"SELECT date_format(datef,'%m') as dm, AVG(f.".$this->field.
")";
208 $sql .=
" FROM ".$this->from;
210 $sql .=
" AND ".$this->where;
211 $sql .=
" GROUP BY dm";
212 $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.