18include_once DOL_DOCUMENT_ROOT.
'/core/class/stats.class.php';
19include_once DOL_DOCUMENT_ROOT.
'/core/lib/date.lib.php';
50 require_once
'project.class.php';
51 $this->project =
new Project($this->db);
53 $this->from = MAIN_DB_PREFIX.$this->project->table_element;
54 $this->field =
'opp_amount';
55 $this->where =
" entity = ".$conf->entity;
56 if ($this->socid > 0) {
57 $this->where .=
" AND fk_soc = ".((int) $this->socid);
59 if (is_array($this->userid) && count($this->userid) > 0) {
60 $this->where .=
' AND fk_user IN ('.$this->db->sanitize(join(
',', $this->userid)).
')';
61 } elseif ($this->userid > 0) {
62 $this->where .=
" AND fk_user = ".((int) $this->userid);
77 global $conf, $user, $langs;
82 $sql .=
" SUM(t.opp_amount), t.fk_opp_status, cls.code, cls.label";
83 $sql .=
" FROM ".MAIN_DB_PREFIX.
"projet as t";
87 $sql .=
", ".MAIN_DB_PREFIX.
"c_lead_status as cls";
93 $sql .=
" AND t.fk_opp_status = cls.rowid";
94 $sql .=
" AND t.fk_statut <> 0";
95 $sql .=
" GROUP BY t.fk_opp_status, cls.code, cls.label";
99 dol_syslog(get_class($this).
'::'.__METHOD__, LOG_DEBUG);
100 $resql = $this->db->query($sql);
102 $num = $this->db->num_rows($resql);
106 $row = $this->db->fetch_row($resql);
107 if ($i < $limit || $num == $limit) {
108 $label = (($langs->trans(
"OppStatus".$row[2]) !=
"OppStatus".$row[2]) ? $langs->trans(
"OppStatus".$row[2]) : $row[2]);
110 $label.
' ('.
price(
price2num($row[0],
'MT'), 1, $langs, 1, -1, -1, $conf->currency).
')',
120 $langs->transnoentitiesnoconv(
"Other"),
124 $this->db->free($resql);
126 $this->error =
"Error ".$this->db->lasterror();
127 dol_syslog(get_class($this).
'::'.__METHOD__.
' '.$this->error, LOG_ERR);
141 global $conf, $user, $langs;
147 $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,";
148 $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";
149 $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";
158 $sql .=
" GROUP BY year";
159 $sql .= $this->db->order(
'year',
'DESC');
178 $object =
new Project($this->db);
179 $projectsListId =
'';
180 if (!$user->hasRight(
'projet',
'all',
'lire')) {
181 $projectsListId = $object->getProjectsAuthorizedForUser($user, 0, 1, $user->socid);
184 $sqlwhere[] =
' t.entity IN ('.getEntity(
'project').
')';
186 if (!empty($this->userid)) {
187 $sqlwhere[] =
' t.fk_user_resp = '.((int) $this->userid);
191 if (!empty($this->socid)) {
192 $sqlwhere[] =
' t.fk_soc = '.((int) $this->socid);
194 if (!empty($this->year) && empty($this->month)) {
197 if (!empty($this->year) && !empty($this->month)) {
198 $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)).
"'";
201 if (!empty($this->
status)) {
202 $sqlwhere[] =
" t.fk_statut IN (".$this->db->sanitize($this->
status).
")";
205 if (!empty($this->opp_status)) {
206 if (is_numeric($this->opp_status) && $this->opp_status > 0) {
207 $sqlwhere[] =
" t.fk_opp_status = ".((int) $this->opp_status);
209 if ($this->opp_status ==
'all') {
210 $sqlwhere[] =
" (t.fk_opp_status IS NOT NULL AND t.fk_opp_status <> -1)";
212 if ($this->opp_status ==
'openedopp') {
213 $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')))";
215 if ($this->opp_status ==
'notopenedopp') {
216 $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'))";
218 if ($this->opp_status ==
'none') {
219 $sqlwhere[] =
" (t.fk_opp_status IS NULL OR t.fk_opp_status = -1)";
223 if (!$user->hasRight(
'projet',
'all',
'lire')) {
224 $sqlwhere[] =
" t.rowid IN (".$this->db->sanitize($projectsListId).
")";
227 if (count($sqlwhere) > 0) {
228 $sqlwhere_str =
' WHERE '.implode(
' AND ', $sqlwhere);
231 return $sqlwhere_str;
245 $sql =
"SELECT date_format(t.datec,'%m') as dm, COUNT(*) as nb";
246 $sql .=
" FROM ".MAIN_DB_PREFIX.
"projet as t";
251 $sql .=
" GROUP BY dm";
252 $sql .= $this->db->order(
'dm',
'DESC');
270 $sql =
"SELECT date_format(t.datec,'%m') as dm, SUM(t.opp_amount)";
271 $sql .=
" FROM ".MAIN_DB_PREFIX.
"projet as t";
276 $sql .=
" GROUP BY dm";
277 $sql .= $this->db->order(
'dm',
'DESC');
296 global $conf, $user, $langs;
298 if ($startyear > $endyear) {
305 if (!empty($cachedelay)) {
306 include_once DOL_DOCUMENT_ROOT.
'/core/lib/files.lib.php';
307 include_once DOL_DOCUMENT_ROOT.
'/core/lib/json.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);
333 while ($year <= $endyear) {
340 for ($i = 0; $i < 12; $i++) {
341 $data[$i][] = $datay[$endyear][$i][0];
343 while ($year <= $endyear) {
344 $data[$i][] = $datay[$year][$i][1];
351 if (empty($foundintocache) && ($cachedelay > 0 || $cachedelay == -1)) {
352 dol_syslog(get_class($this).
'::'.__FUNCTION__.
" save cache file ".$newpathofdestfile.
" onto disk.");
356 $fp = fopen($newpathofdestfile,
'w');
358 fwrite($fp, json_encode($data));
362 dol_syslog(
"Failed to write cache file", LOG_ERR);
364 $this->lastfetchdate[get_class($this).
'_'.__FUNCTION__] = $nowgmt;
382 $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)";
383 $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';
388 $sql .=
" GROUP BY dm";
389 $sql .= $this->db->order(
'dm',
'DESC');
406 global $conf, $user, $langs;
408 if ($startyear > $endyear) {
415 if (!empty($cachedelay)) {
416 include_once DOL_DOCUMENT_ROOT.
'/core/lib/files.lib.php';
417 include_once DOL_DOCUMENT_ROOT.
'/core/lib/json.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);
443 while ($year <= $endyear) {
450 for ($i = 0; $i < 12; $i++) {
451 $data[$i][] = $datay[$endyear][$i][0];
453 while ($year <= $endyear) {
454 $data[$i][] = $datay[$year][$i][1];
461 if (empty($foundintocache) && ($cachedelay > 0 || $cachedelay == - 1)) {
462 dol_syslog(get_class($this).
'::'.__FUNCTION__.
" save cache file ".$newpathofdestfile.
" onto disk.");
466 $fp = fopen($newpathofdestfile,
'w');
468 fwrite($fp, json_encode($data));
473 $this->lastfetchdate[get_class($this).
'_'.__FUNCTION__] = $nowgmt;
490 $sql =
"SELECT date_format(t.datec,'%m') as dm, count(t.opp_amount)";
491 $sql .=
" FROM ".MAIN_DB_PREFIX.
"projet as t";
496 $sql .=
" GROUP BY dm";
497 $sql .= $this->db->order(
'dm',
'DESC');
503 $sql =
"SELECT date_format(t.datec,'%m') as dm, count(t.opp_amount)";
504 $sql .=
" FROM ".MAIN_DB_PREFIX.
"projet as t";
509 $sql .=
" GROUP BY dm";
510 $sql .= $this->db->order(
'dm',
'DESC');
514 $res_only_wined = $this->
_getNbByMonth($year, $sql, $format);
518 foreach ($res_total as $key => $total_row) {
520 if (!empty($total_row[1])) {
521 $res[$key] = array($total_row[0], (100 * $res_only_wined[$key][1]) / $total_row[1]);
523 $res[$key] = array($total_row[0], 0);
537 $sql =
"SELECT date_format(datef,'%m') as dm, AVG(f.".$this->field.
")";
538 $sql .=
" FROM ".$this->from;
540 $sql .=
" AND ".$this->where;
541 $sql .=
" GROUP BY dm";
542 $sql .= $this->db->order(
'dm',
'DESC');
print $langs trans("AuditedSecurityEvents").'</strong >< span class="opacitymedium"></span >< br > status
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)
Renvoie le montant moyen par mois pour une annee donnee Return the amount average par month for a giv...
_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...
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)