19include_once DOL_DOCUMENT_ROOT.
'/core/class/stats.class.php';
20include_once DOL_DOCUMENT_ROOT.
'/core/lib/date.lib.php';
51 require_once
'project.class.php';
52 $this->project =
new Project($this->db);
54 $this->from = MAIN_DB_PREFIX.$this->project->table_element;
55 $this->field =
'opp_amount';
56 $this->where =
" entity = ".$conf->entity;
57 if ($this->socid > 0) {
58 $this->where .=
" AND fk_soc = ".((int) $this->socid);
60 if (is_array($this->userid) && count($this->userid) > 0) {
61 $this->where .=
' AND fk_user IN ('.$this->db->sanitize(implode(
',', $this->userid)).
')';
62 } elseif ($this->userid > 0) {
63 $this->where .=
" AND fk_user = ".((int) $this->userid);
78 global $conf, $user, $langs;
83 $sql .=
" SUM(t.opp_amount), t.fk_opp_status, cls.code, cls.label";
84 $sql .=
" FROM ".MAIN_DB_PREFIX.
"projet as t";
88 $sql .=
", ".MAIN_DB_PREFIX.
"c_lead_status as cls";
94 $sql .=
" AND t.fk_opp_status = cls.rowid";
95 $sql .=
" AND t.fk_statut <> 0";
96 $sql .=
" GROUP BY t.fk_opp_status, cls.code, cls.label";
100 dol_syslog(get_class($this).
'::'.__METHOD__, LOG_DEBUG);
101 $resql = $this->db->query($sql);
103 $num = $this->db->num_rows($resql);
107 $row = $this->db->fetch_row($resql);
108 if ($i < $limit || $num == $limit) {
109 $label = (($langs->trans(
"OppStatus".$row[2]) !=
"OppStatus".$row[2]) ? $langs->trans(
"OppStatus".$row[2]) : $row[2]);
111 $label.
' ('.
price(
price2num($row[0],
'MT'), 1, $langs, 1, -1, -1, $conf->currency).
')',
121 $langs->transnoentitiesnoconv(
"Other"),
125 $this->db->free($resql);
127 $this->error =
"Error ".$this->db->lasterror();
128 dol_syslog(get_class($this).
'::'.__METHOD__.
' '.$this->error, LOG_ERR);
142 global $conf, $user, $langs;
148 $sql =
"SELECT date_format(t.datec,'%Y') as year, COUNT(t.rowid) as nb, SUM(t.opp_amount) as total, AVG(t.opp_amount) as avg,";
149 $sql .=
" SUM(t.opp_amount * ".$this->db->ifsql(
"t.opp_percent IS NULL".($wonlostfilter ?
" OR cls.code IN ('WON','LOST')" :
""),
'0',
't.opp_percent').
" / 100) as weighted";
150 $sql .=
" FROM ".MAIN_DB_PREFIX.
"projet as t LEFT JOIN ".MAIN_DB_PREFIX.
"c_lead_status as cls ON cls.rowid = t.fk_opp_status";
159 $sql .=
" GROUP BY year";
160 $sql .= $this->db->order(
'year',
'DESC');
180 $projectsListId =
'';
181 if (!$user->hasRight(
'projet',
'all',
'lire')) {
182 $projectsListId =
$object->getProjectsAuthorizedForUser($user, 0, 1, $user->socid);
185 $sqlwhere[] =
' t.entity IN ('.getEntity(
'project').
')';
187 if (!empty($this->userid)) {
188 $sqlwhere[] =
' t.fk_user_resp = '.((int) $this->userid);
192 if (!empty($this->socid)) {
193 $sqlwhere[] =
' t.fk_soc = '.((int) $this->socid);
195 if (!empty($this->year) && empty($this->month)) {
198 if (!empty($this->year) && !empty($this->month)) {
199 $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)).
"'";
202 if (!empty($this->
status)) {
203 $sqlwhere[] =
" t.fk_statut IN (".$this->db->sanitize($this->
status).
")";
206 if (!empty($this->opp_status)) {
207 if (is_numeric($this->opp_status) && $this->opp_status > 0) {
208 $sqlwhere[] =
" t.fk_opp_status = ".((int) $this->opp_status);
210 if ($this->opp_status ==
'all') {
211 $sqlwhere[] =
" (t.fk_opp_status IS NOT NULL AND t.fk_opp_status <> -1)";
213 if ($this->opp_status ==
'openedopp') {
214 $sqlwhere[] =
" (t.fk_opp_status IS NOT NULL AND t.fk_opp_status <> -1 AND t.fk_opp_status NOT IN (SELECT rowid FROM ".MAIN_DB_PREFIX.
"c_lead_status WHERE code IN ('WON','LOST')))";
216 if ($this->opp_status ==
'notopenedopp') {
217 $sqlwhere[] =
" (t.fk_opp_status IS NULL OR t.fk_opp_status = -1 OR t.fk_opp_status IN (SELECT rowid FROM ".MAIN_DB_PREFIX.
"c_lead_status WHERE code = 'WON'))";
219 if ($this->opp_status ==
'none') {
220 $sqlwhere[] =
" (t.fk_opp_status IS NULL OR t.fk_opp_status = -1)";
224 if (!$user->hasRight(
'projet',
'all',
'lire')) {
225 $sqlwhere[] =
" t.rowid IN (".$this->db->sanitize($projectsListId).
")";
228 if (count($sqlwhere) > 0) {
229 $sqlwhere_str =
' WHERE '.implode(
' AND ', $sqlwhere);
232 return $sqlwhere_str;
246 $sql =
"SELECT date_format(t.datec,'%m') as dm, COUNT(*) as nb";
247 $sql .=
" FROM ".MAIN_DB_PREFIX.
"projet as t";
252 $sql .=
" GROUP BY dm";
253 $sql .= $this->db->order(
'dm',
'DESC');
271 $sql =
"SELECT date_format(t.datec,'%m') as dm, SUM(t.opp_amount)";
272 $sql .=
" FROM ".MAIN_DB_PREFIX.
"projet as t";
277 $sql .=
" GROUP BY dm";
278 $sql .= $this->db->order(
'dm',
'DESC');
297 global $conf, $user, $langs;
299 if ($startyear > $endyear) {
306 if (!empty($cachedelay)) {
307 include_once DOL_DOCUMENT_ROOT.
'/core/lib/files.lib.php';
310 $newpathofdestfile = $conf->user->dir_temp.
'/'.get_class($this).
'_'.__FUNCTION__.
'_'.(empty($this->cachefilesuffix) ?
'' : $this->cachefilesuffix.
'_').$langs->defaultlang.
'_user'.$user->id.
'.cache';
316 if ($cachedelay > 0) {
318 if ($filedate >= ($nowgmt - $cachedelay)) {
321 $this->lastfetchdate[get_class($this).
'_'.__FUNCTION__] = $filedate;
323 dol_syslog(get_class($this).
'::'.__FUNCTION__.
" cache file ".$newpathofdestfile.
" is not found or older than now - cachedelay (".$nowgmt.
" - ".$cachedelay.
") so we can't use it.");
328 if ($foundintocache) {
329 dol_syslog(get_class($this).
'::'.__FUNCTION__.
" read data from cache file ".$newpathofdestfile.
" ".$filedate.
".");
330 $data = json_decode(file_get_contents($newpathofdestfile),
true);
331 '@phan-var-force array $data';
334 while ($year <= $endyear) {
341 for ($i = 0; $i < 12; $i++) {
342 $data[$i][] = $datay[$endyear][$i][0];
344 while ($year <= $endyear) {
345 $data[$i][] = $datay[$year][$i][1];
352 if (empty($foundintocache) && ($cachedelay > 0 || $cachedelay == -1)) {
353 dol_syslog(get_class($this).
'::'.__FUNCTION__.
" save cache file ".$newpathofdestfile.
" onto disk.");
357 $fp = fopen($newpathofdestfile,
'w');
359 fwrite($fp, json_encode($data));
363 dol_syslog(
"Failed to write cache file", LOG_ERR);
365 $this->lastfetchdate[get_class($this).
'_'.__FUNCTION__] = $nowgmt;
383 $sql =
"SELECT date_format(t.datec,'%m') as dm, SUM(t.opp_amount * ".$this->db->ifsql(
"t.opp_percent IS NULL".($wonlostfilter ?
" OR cls.code IN ('WON','LOST')" :
""),
'0',
't.opp_percent').
" / 100)";
384 $sql .=
" FROM ".MAIN_DB_PREFIX.
"projet as t LEFT JOIN ".MAIN_DB_PREFIX.
'c_lead_status as cls ON t.fk_opp_status = cls.rowid';
389 $sql .=
" GROUP BY dm";
390 $sql .= $this->db->order(
'dm',
'DESC');
407 global $conf, $user, $langs;
409 if ($startyear > $endyear) {
416 if (!empty($cachedelay)) {
417 include_once DOL_DOCUMENT_ROOT.
'/core/lib/files.lib.php';
420 $newpathofdestfile = $conf->user->dir_temp.
'/'.get_class($this).
'_'.__FUNCTION__.
'_'.(empty($this->cachefilesuffix) ?
'' : $this->cachefilesuffix.
'_').$langs->defaultlang.
'_user'.$user->id.
'.cache';
426 if ($cachedelay > 0) {
428 if ($filedate >= ($nowgmt - $cachedelay)) {
431 $this->lastfetchdate[get_class($this).
'_'.__FUNCTION__] = $filedate;
433 dol_syslog(get_class($this).
'::'.__FUNCTION__.
" cache file ".$newpathofdestfile.
" is not found or older than now - cachedelay (".$nowgmt.
" - ".$cachedelay.
") so we can't use it.");
438 if ($foundintocache) {
439 dol_syslog(get_class($this).
'::'.__FUNCTION__.
" read data from cache file ".$newpathofdestfile.
" ".$filedate.
".");
440 $data = json_decode(file_get_contents($newpathofdestfile),
true);
441 '@phan-var-force array $data';
444 while ($year <= $endyear) {
451 for ($i = 0; $i < 12; $i++) {
452 $data[$i][] = $datay[$endyear][$i][0];
454 while ($year <= $endyear) {
455 $data[$i][] = $datay[$year][$i][1];
462 if (empty($foundintocache) && ($cachedelay > 0 || $cachedelay == - 1)) {
463 dol_syslog(get_class($this).
'::'.__FUNCTION__.
" save cache file ".$newpathofdestfile.
" onto disk.");
467 $fp = fopen($newpathofdestfile,
'w');
469 fwrite($fp, json_encode($data));
474 $this->lastfetchdate[get_class($this).
'_'.__FUNCTION__] = $nowgmt;
491 $sql =
"SELECT date_format(t.datec,'%m') as dm, count(t.opp_amount)";
492 $sql .=
" FROM ".MAIN_DB_PREFIX.
"projet as t";
497 $sql .=
" GROUP BY dm";
498 $sql .= $this->db->order(
'dm',
'DESC');
504 $sql =
"SELECT date_format(t.datec,'%m') as dm, count(t.opp_amount)";
505 $sql .=
" FROM ".MAIN_DB_PREFIX.
"projet as t";
510 $sql .=
" GROUP BY dm";
511 $sql .= $this->db->order(
'dm',
'DESC');
515 $res_only_wined = $this->
_getNbByMonth($year, $sql, $format);
519 foreach ($res_total as $key => $total_row) {
521 if (!empty($total_row[1])) {
522 $res[$key] = array($total_row[0], (100 * $res_only_wined[$key][1]) / $total_row[1]);
524 $res[$key] = array($total_row[0], 0);
538 $sql =
"SELECT date_format(datef,'%m') as dm, AVG(f.".$this->field.
")";
539 $sql .=
" FROM ".$this->from;
541 $sql .=
" AND ".$this->where;
542 $sql .=
" GROUP BY dm";
543 $sql .= $this->db->order(
'dm',
'DESC');
if( $user->socid > 0) if(! $user->hasRight('accounting', 'chartofaccount')) $object
Class to manage projects.
Class to manage statistics on projects.
getAmountByMonth($year, $format=0)
Return the Project amount by month for a year.
__construct($db)
Constructor.
buildWhere()
Build the where part.
getAllByYear()
Return count, and sum of products.
getTransformRateByMonth($year, $format=0)
Return the Project transformation rate by month for a year.
getAllProjectByStatus($limit=5)
Return all leads grouped by opportunity status.
getNbByMonth($year, $format=0)
Return Project number by month for a year.
getWeightedAmountByMonth($year, $wonlostfilter=1)
Return the Project weighted opp amount by month for a year.
getAverageByMonth($year)
Return average of entity by month.
getTransformRateByMonthWithPrevYear($endyear, $startyear, $cachedelay=0)
Return amount of elements by month for several years.
getWeightedAmountByMonthWithPrevYear($endyear, $startyear, $cachedelay=0, $wonlostfilter=1)
Return amount of elements by month for several years.
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.
_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...
print $langs trans("Ref").' m titre as m m statut as status
Or an array listing all the potential status of the object: array: int of the status => translated la...
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_filemtime($pathoffile)
Return time of a file.
dol_is_dir($folder)
Test if filename is a directory.
price2num($amount, $rounding='', $option=0)
Function that return a number with universal decimal format (decimal separator is '.
price($amount, $form=0, $outlangs='', $trunc=1, $rounding=-1, $forcerounding=-1, $currency_code='')
Function to format a value into an amount for visual output Function used into PDF and HTML pages.
dolChmod($filepath, $newmask='')
Change mod of a file.
dol_now($mode='auto')
Return date for now.
dol_syslog($message, $level=LOG_INFO, $ident=0, $suffixinfilename='', $restricttologhandler='', $logcontext=null)
Write log message into outputs.
dol_mkdir($dir, $dataroot='', $newmask='')
Creation of a directory (this can create recursive subdir)