Passed
Push — EXTRACT_CLASSES ( ff35ec...a2ff75 )
by Rafael
48:13
created

ProjectStats::buildWhere()   F

Complexity

Conditions 18
Paths 8448

Size

Total Lines 62
Code Lines 34

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 18
eloc 34
nc 8448
nop 0
dl 0
loc 62
rs 0.7
c 0
b 0
f 0

How to fix   Long Method    Complexity   

Long Method

Small methods make your code easier to understand, in particular if combined with a good name. Besides, if your method is small, finding a good name is usually much easier.

For example, if you find yourself adding comments to a method's body, this is usually a good sign to extract the commented part to a new method, and use the comment as a starting point when coming up with a good name for this new method.

Commonly applied refactorings include:

1
<?php
2
3
/* Copyright (C) 2014-2015  Florian HENRY               <[email protected]>
4
 * Copyright (C) 2024		MDW							<[email protected]>
5
 * Copyright (C) 2024       Rafael San José             <[email protected]>
6
 *
7
 * This program is free software; you can redistribute it and/or modify
8
 * it under the terms of the GNU General Public License as published by
9
 * the Free Software Foundation; either version 3 of the License, or
10
 * (at your option) any later version.
11
 *
12
 * This program is distributed in the hope that it will be useful,
13
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15
 * GNU General Public License for more details.
16
 *
17
 * You should have received a copy of the GNU General Public License
18
 * along with this program. If not, see <https://www.gnu.org/licenses/>.
19
 */
20
21
namespace Dolibarr\Code\Projet\Classes;
22
23
use Dolibarr\Code\Core\Classes\Stats;
24
25
include_once DOL_DOCUMENT_ROOT . '/core/class/stats.class.php';
26
include_once DOL_DOCUMENT_ROOT . '/core/lib/date.lib.php';
27
28
29
/**
30
 * Class to manage statistics on projects
31
 */
32
class ProjectStats extends Stats
33
{
34
    private $project;
35
    public $userid;
36
    public $socid;
37
    public $status;
38
    public $opp_status;
39
40
    //SQL stat
41
    public $field;
42
    public $from;
43
    public $where;
44
45
46
    /**
47
     * Constructor
48
     *
49
     * @param   DoliDB $db     Database handler
0 ignored issues
show
Bug introduced by
The type Dolibarr\Code\Projet\Classes\DoliDB was not found. Did you mean DoliDB? If so, make sure to prefix the type with \.
Loading history...
50
     */
51
    public function __construct($db)
52
    {
53
        global $conf, $user;
54
55
        $this->db = $db;
56
57
        require_once 'project.class.php';
58
        $this->project = new Project($this->db);
59
60
        $this->from = MAIN_DB_PREFIX . $this->project->table_element;
61
        $this->field = 'opp_amount';
62
        $this->where = " entity = " . $conf->entity;
63
        if ($this->socid > 0) {
64
            $this->where .= " AND fk_soc = " . ((int) $this->socid);
65
        }
66
        if (is_array($this->userid) && count($this->userid) > 0) {
67
            $this->where .= ' AND fk_user IN (' . $this->db->sanitize(implode(',', $this->userid)) . ')';
68
        } elseif ($this->userid > 0) {
69
            $this->where .= " AND fk_user = " . ((int) $this->userid);
70
        }
71
    }
72
73
74
    /**
75
     * Return all leads grouped by opportunity status.
76
     * Warning: There is no filter on WON/LOST because we want this for statistics.
77
     *
78
     * @param  int             $limit Limit results
79
     * @return array|int       Array with value or -1 if error
80
     * @throws Exception
81
     */
82
    public function getAllProjectByStatus($limit = 5)
83
    {
84
        global $conf, $user, $langs;
85
86
        $datay = array();
87
88
        $sql = "SELECT";
89
        $sql .= " SUM(t.opp_amount), t.fk_opp_status, cls.code, cls.label";
90
        $sql .= " FROM " . MAIN_DB_PREFIX . "projet as t";
91
        // No check is done on company permission because readability is managed by public status of project and assignment.
92
        //if (! $user->rights->societe->client->voir && ! $user->socid)
93
        //  $sql .= " INNER JOIN " . MAIN_DB_PREFIX . "societe_commerciaux as sc ON sc.fk_soc=t.fk_soc AND sc.fk_user = ".((int) $user->id);
94
        $sql .= ", " . MAIN_DB_PREFIX . "c_lead_status as cls";
95
        $sql .= $this->buildWhere();
96
        // For external user, no check is done on company permission because readability is managed by public status of project and assignment.
97
        //if ($socid > 0) $sql.= " AND t.fk_soc = ".((int) $socid);
98
        // No check is done on company permission because readability is managed by public status of project and assignment.
99
        //if (! $user->rights->societe->client->voir && ! $socid) $sql.= " AND ((s.rowid = sc.fk_soc AND sc.fk_user = ".((int) $user->id).") OR (s.rowid IS NULL))";
100
        $sql .= " AND t.fk_opp_status = cls.rowid";
101
        $sql .= " AND t.fk_statut <> 0"; // We want historic also, so all projects not draft
102
        $sql .= " GROUP BY t.fk_opp_status, cls.code, cls.label";
103
104
        $result = array();
105
106
        dol_syslog(get_class($this) . '::' . __METHOD__, LOG_DEBUG);
107
        $resql = $this->db->query($sql);
108
        if ($resql) {
109
            $num = $this->db->num_rows($resql);
110
            $i = 0;
111
            $other = 0;
112
            while ($i < $num) {
113
                $row = $this->db->fetch_row($resql);
114
                if ($i < $limit || $num == $limit) {
115
                    $label = (($langs->trans("OppStatus" . $row[2]) != "OppStatus" . $row[2]) ? $langs->trans("OppStatus" . $row[2]) : $row[2]);
116
                    $result[$i] = array(
117
                    $label . ' (' . price(price2num($row[0], 'MT'), 1, $langs, 1, -1, -1, $conf->currency) . ')',
118
                    $row[0]
119
                    );
120
                } else {
121
                    $other += $row[1];
122
                }
123
                $i++;
124
            }
125
            if ($num > $limit) {
126
                $result[$i] = array(
127
                $langs->transnoentitiesnoconv("Other"),
128
                $other
129
                );
130
            }
131
            $this->db->free($resql);
132
        } else {
133
            $this->error = "Error " . $this->db->lasterror();
134
            dol_syslog(get_class($this) . '::' . __METHOD__ . ' ' . $this->error, LOG_ERR);
135
            return -1;
136
        }
137
138
        return $result;
139
    }
140
141
    /**
142
     * Return count, and sum of products
143
     *
144
     * @return array of values
145
     */
146
    public function getAllByYear()
147
    {
148
        global $conf, $user, $langs;
149
150
        $datay = array();
151
152
        $wonlostfilter = 0; // No filter on status WON/LOST
153
154
        $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,";
155
        $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";
156
        $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";
157
        // No check is done on company permission because readability is managed by public status of project and assignment.
158
        //if (! $user->rights->societe->client->voir && ! $user->soc_id)
159
        //  $sql .= " INNER JOIN " . MAIN_DB_PREFIX . "societe_commerciaux as sc ON sc.fk_soc=t.fk_soc AND sc.fk_user = ".((int) $user->id);
160
        $sql .= $this->buildWhere();
161
        // For external user, no check is done on company permission because readability is managed by public status of project and assignment.
162
        //if ($socid > 0) $sql.= " AND t.fk_soc = ".((int) $socid);
163
        // No check is done on company permission because readability is managed by public status of project and assignment.
164
        //if (! $user->rights->societe->client->voir && ! $socid) $sql.= " AND ((s.rowid = sc.fk_soc AND sc.fk_user = ".((int) $user->id).") OR (s.rowid IS NULL))";
165
        $sql .= " GROUP BY year";
166
        $sql .= $this->db->order('year', 'DESC');
167
168
        return $this->_getAllByYear($sql);
169
    }
170
171
172
    /**
173
     * Build the where part
174
     *
175
     * @return string
176
     */
177
    public function buildWhere()
178
    {
179
        global $user;
180
181
        $sqlwhere_str = '';
182
        $sqlwhere = array();
183
184
        // Get list of project id allowed to user (in a string list separated by coma)
185
        $object = new Project($this->db);
186
        $projectsListId = '';
187
        if (!$user->hasRight('projet', 'all', 'lire')) {
188
            $projectsListId = $object->getProjectsAuthorizedForUser($user, 0, 1, $user->socid);
189
        }
190
191
        $sqlwhere[] = ' t.entity IN (' . getEntity('project') . ')';
192
193
        if (!empty($this->userid)) {
194
            $sqlwhere[] = ' t.fk_user_resp = ' . ((int) $this->userid);
195
        }
196
197
        // Forced filter on socid is similar to forced filter on project. TODO Use project assignment to allow to not use filter on project
198
        if (!empty($this->socid)) {
199
            $sqlwhere[] = ' t.fk_soc = ' . ((int) $this->socid);
200
        }
201
        if (!empty($this->year) && empty($this->month)) {
202
            $sqlwhere[] = " t.datec BETWEEN '" . $this->db->idate(dol_get_first_day($this->year, 1)) . "' AND '" . $this->db->idate(dol_get_last_day($this->year, 12)) . "'";
203
        }
204
        if (!empty($this->year) && !empty($this->month)) {
205
            $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)) . "'";
206
        }
207
208
        if (!empty($this->status)) {
209
            $sqlwhere[] = " t.fk_statut IN (" . $this->db->sanitize($this->status) . ")";
210
        }
211
212
        if (!empty($this->opp_status)) {
213
            if (is_numeric($this->opp_status) && $this->opp_status > 0) {
214
                $sqlwhere[] = " t.fk_opp_status = " . ((int) $this->opp_status);
215
            }
216
            if ($this->opp_status == 'all') {
217
                $sqlwhere[] = " (t.fk_opp_status IS NOT NULL AND t.fk_opp_status <> -1)";
218
            }
219
            if ($this->opp_status == 'openedopp') {
220
                $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')))";
221
            }
222
            if ($this->opp_status == 'notopenedopp') {
223
                $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'))";
224
            }
225
            if ($this->opp_status == 'none') {
226
                $sqlwhere[] = " (t.fk_opp_status IS NULL OR t.fk_opp_status = -1)";
227
            }
228
        }
229
230
        if (!$user->hasRight('projet', 'all', 'lire')) {
231
            $sqlwhere[] = " t.rowid IN (" . $this->db->sanitize($projectsListId) . ")"; // public and assigned to, or restricted to company for external users
232
        }
233
234
        if (count($sqlwhere) > 0) {
235
            $sqlwhere_str = ' WHERE ' . implode(' AND ', $sqlwhere);
236
        }
237
238
        return $sqlwhere_str;
239
    }
240
241
    /**
242
     * Return Project number by month for a year
243
     *
244
     * @param   int     $year       Year to scan
245
     * @param   int     $format     0=Label of abscissa is a translated text, 1=Label of abscissa is month number, 2=Label of abscissa is first letter of month
246
     * @return  array               Array of values
247
     */
248
    public function getNbByMonth($year, $format = 0)
249
    {
250
        $this->year = $year;
251
252
        $sql = "SELECT date_format(t.datec,'%m') as dm, COUNT(*) as nb";
253
        $sql .= " FROM " . MAIN_DB_PREFIX . "projet as t";
254
        // No check is done on company permission because readability is managed by public status of project and assignment.
255
        //if (! $user->rights->societe->client->voir && ! $user->soc_id)
256
        //  $sql .= " INNER JOIN " . MAIN_DB_PREFIX . "societe_commerciaux as sc ON sc.fk_soc=t.fk_soc AND sc.fk_user = ".((int) $user->id);
257
        $sql .= $this->buildWhere();
258
        $sql .= " GROUP BY dm";
259
        $sql .= $this->db->order('dm', 'DESC');
260
261
        $res = $this->_getNbByMonth($year, $sql, $format);
262
        // var_dump($res);print '<br>';
263
        return $res;
264
    }
265
266
    /**
267
     * Return the Project amount by month for a year
268
     *
269
     * @param   int     $year       Year to scan
270
     * @param   int     $format     0=Label of abscissa is a translated text, 1=Label of abscissa is month number, 2=Label of abscissa is first letter of month
271
     * @return  array               Array with amount by month
272
     */
273
    public function getAmountByMonth($year, $format = 0)
274
    {
275
        $this->year = $year;
276
277
        $sql = "SELECT date_format(t.datec,'%m') as dm, SUM(t.opp_amount)";
278
        $sql .= " FROM " . MAIN_DB_PREFIX . "projet as t";
279
        // No check is done on company permission because readability is managed by public status of project and assignment.
280
        //if (! $user->rights->societe->client->voir && ! $user->soc_id)
281
        //  $sql .= " INNER JOIN " . MAIN_DB_PREFIX . "societe_commerciaux as sc ON sc.fk_soc=t.fk_soc AND sc.fk_user = ".((int) $user->id);
282
        $sql .= $this->buildWhere();
283
        $sql .= " GROUP BY dm";
284
        $sql .= $this->db->order('dm', 'DESC');
285
286
        $res = $this->_getAmountByMonth($year, $sql, $format);
287
        // var_dump($res);print '<br>';
288
        return $res;
289
    }
290
291
292
    /**
293
     * Return amount of elements by month for several years
294
     *
295
     * @param   int     $endyear        Start year
296
     * @param   int     $startyear      End year
297
     * @param   int     $cachedelay     Delay we accept for cache file (0=No read, no save of cache, -1=No read but save)
298
     * @param   int     $wonlostfilter  Add a filter on status won/lost
299
     * @return  array|int<-1,-1>        Array of values or <0 if error
300
     */
301
    public function getWeightedAmountByMonthWithPrevYear($endyear, $startyear, $cachedelay = 0, $wonlostfilter = 1)
302
    {
303
        global $conf, $user, $langs;
304
305
        if ($startyear > $endyear) {
306
            return -1;
307
        }
308
309
        $datay = array();
310
311
        // Search into cache
312
        if (!empty($cachedelay)) {
313
            include_once DOL_DOCUMENT_ROOT . '/core/lib/files.lib.php';
314
            include_once DOL_DOCUMENT_ROOT . '/core/lib/json.lib.php';
315
        }
316
317
        $newpathofdestfile = $conf->user->dir_temp . '/' . get_class($this) . '_' . __FUNCTION__ . '_' . (empty($this->cachefilesuffix) ? '' : $this->cachefilesuffix . '_') . $langs->defaultlang . '_user' . $user->id . '.cache';
318
        $newmask = '0644';
319
320
        $nowgmt = dol_now();
321
322
        $foundintocache = 0;
323
        if ($cachedelay > 0) {
324
            $filedate = dol_filemtime($newpathofdestfile);
325
            if ($filedate >= ($nowgmt - $cachedelay)) {
326
                $foundintocache = 1;
327
328
                $this->lastfetchdate[get_class($this) . '_' . __FUNCTION__] = $filedate;
329
            } else {
330
                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.");
331
            }
332
        }
333
334
        // Load file into $data
335
        if ($foundintocache) {    // Cache file found and is not too old
336
            dol_syslog(get_class($this) . '::' . __FUNCTION__ . " read data from cache file " . $newpathofdestfile . " " . $filedate . ".");
337
            $data = json_decode(file_get_contents($newpathofdestfile), true);
338
            '@phan-var-force array $data';  // Phan can not interpret json_decode
339
        } else {
340
            $year = $startyear;
341
            while ($year <= $endyear) {
342
                $datay[$year] = $this->getWeightedAmountByMonth($year, $wonlostfilter);
343
                $year++;
344
            }
345
346
            $data = array();
347
            // $data = array('xval'=>array(0=>xlabel,1=>yval1,2=>yval2...),...)
348
            for ($i = 0; $i < 12; $i++) {
349
                $data[$i][] = $datay[$endyear][$i][0]; // set label
350
                $year = $startyear;
351
                while ($year <= $endyear) {
352
                    $data[$i][] = $datay[$year][$i][1]; // set yval for x=i
353
                    $year++;
354
                }
355
            }
356
        }
357
358
        // Save cache file
359
        if (empty($foundintocache) && ($cachedelay > 0 || $cachedelay == -1)) {
360
            dol_syslog(get_class($this) . '::' . __FUNCTION__ . " save cache file " . $newpathofdestfile . " onto disk.");
361
            if (!dol_is_dir($conf->user->dir_temp)) {
362
                dol_mkdir($conf->user->dir_temp);
363
            }
364
            $fp = fopen($newpathofdestfile, 'w');
365
            if ($fp) {
366
                fwrite($fp, json_encode($data));
367
                fclose($fp);
368
                dolChmod($newpathofdestfile);
369
            } else {
370
                dol_syslog("Failed to write cache file", LOG_ERR);
371
            }
372
            $this->lastfetchdate[get_class($this) . '_' . __FUNCTION__] = $nowgmt;
373
        }
374
375
        return $data;
376
    }
377
378
379
    /**
380
     * Return the Project weighted opp amount by month for a year.
381
     *
382
     * @param  int $year               Year to scan
383
     * @param  int $wonlostfilter      Add a filter on status won/lost
384
     * @return array                   Array with amount by month
385
     */
386
    public function getWeightedAmountByMonth($year, $wonlostfilter = 1)
387
    {
388
        $this->year = $year;
389
390
        $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)";
391
        $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';
392
        // No check is done on company permission because readability is managed by public status of project and assignment.
393
        //if (! $user->rights->societe->client->voir && ! $user->soc_id)
394
        //  $sql .= " INNER JOIN " . MAIN_DB_PREFIX . "societe_commerciaux as sc ON sc.fk_soc=t.fk_soc AND sc.fk_user = ".((int) $user->id);
395
        $sql .= $this->buildWhere();
396
        $sql .= " GROUP BY dm";
397
        $sql .= $this->db->order('dm', 'DESC');
398
399
        $res = $this->_getAmountByMonth($year, $sql);
400
        // var_dump($res);print '<br>';
401
        return $res;
402
    }
403
404
    /**
405
     * Return amount of elements by month for several years
406
     *
407
     * @param   int         $endyear        End year
408
     * @param   int         $startyear      Start year
409
     * @param   int         $cachedelay     accept for cache file (0=No read, no save of cache, -1=No read but save)
410
     * @return  array|int                   Array of values or <0 if error
411
     */
412
    public function getTransformRateByMonthWithPrevYear($endyear, $startyear, $cachedelay = 0)
413
    {
414
        global $conf, $user, $langs;
415
416
        if ($startyear > $endyear) {
417
            return -1;
418
        }
419
420
        $datay = array();
421
422
        // Search into cache
423
        if (!empty($cachedelay)) {
424
            include_once DOL_DOCUMENT_ROOT . '/core/lib/files.lib.php';
425
            include_once DOL_DOCUMENT_ROOT . '/core/lib/json.lib.php';
426
        }
427
428
        $newpathofdestfile = $conf->user->dir_temp . '/' . get_class($this) . '_' . __FUNCTION__ . '_' . (empty($this->cachefilesuffix) ? '' : $this->cachefilesuffix . '_') . $langs->defaultlang . '_user' . $user->id . '.cache';
429
        $newmask = '0644';
430
431
        $nowgmt = dol_now();
432
433
        $foundintocache = 0;
434
        if ($cachedelay > 0) {
435
            $filedate = dol_filemtime($newpathofdestfile);
436
            if ($filedate >= ($nowgmt - $cachedelay)) {
437
                $foundintocache = 1;
438
439
                $this->lastfetchdate[get_class($this) . '_' . __FUNCTION__] = $filedate;
440
            } else {
441
                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.");
442
            }
443
        }
444
445
        // Load file into $data
446
        if ($foundintocache) { // Cache file found and is not too old
447
            dol_syslog(get_class($this) . '::' . __FUNCTION__ . " read data from cache file " . $newpathofdestfile . " " . $filedate . ".");
448
            $data = json_decode(file_get_contents($newpathofdestfile), true);
449
            '@phan-var-force array $data';  // Phan can not interpret json_decode
450
        } else {
451
            $year = $startyear;
452
            while ($year <= $endyear) {
453
                $datay[$year] = $this->getTransformRateByMonth($year);
454
                $year++;
455
            }
456
457
            $data = array();
458
            // $data = array('xval'=>array(0=>xlabel,1=>yval1,2=>yval2...),...)
459
            for ($i = 0; $i < 12; $i++) {
460
                $data[$i][] = $datay[$endyear][$i][0]; // set label
461
                $year = $startyear;
462
                while ($year <= $endyear) {
463
                    $data[$i][] = $datay[$year][$i][1]; // set yval for x=i
464
                    $year++;
465
                }
466
            }
467
        }
468
469
        // Save cache file
470
        if (empty($foundintocache) && ($cachedelay > 0 || $cachedelay == - 1)) {
471
            dol_syslog(get_class($this) . '::' . __FUNCTION__ . " save cache file " . $newpathofdestfile . " onto disk.");
472
            if (!dol_is_dir($conf->user->dir_temp)) {
473
                dol_mkdir($conf->user->dir_temp);
474
            }
475
            $fp = fopen($newpathofdestfile, 'w');
476
            if ($fp) {
477
                fwrite($fp, json_encode($data));
478
                fclose($fp);
479
                dolChmod($newpathofdestfile);
480
            }
481
482
            $this->lastfetchdate[get_class($this) . '_' . __FUNCTION__] = $nowgmt;
483
        }
484
485
        return $data;
486
    }
487
488
    /**
489
     * Return the Project transformation rate by month for a year
490
     *
491
     * @param   int     $year       Year to scan
492
     * @param   int     $format     0=Label of abscissa is a translated text, 1=Label of abscissa is month number, 2=Label of abscissa is first letter of month
493
     * @return  array               Array with amount by month
494
     */
495
    public function getTransformRateByMonth($year, $format = 0)
496
    {
497
        $this->year = $year;
498
499
        $sql = "SELECT date_format(t.datec,'%m') as dm, count(t.opp_amount)";
500
        $sql .= " FROM " . MAIN_DB_PREFIX . "projet as t";
501
        // No check is done on company permission because readability is managed by public status of project and assignment.
502
        //if (! $user->rights->societe->client->voir && ! $user->soc_id)
503
        //  $sql .= " INNER JOIN " . MAIN_DB_PREFIX . "societe_commerciaux as sc ON sc.fk_soc=t.fk_soc AND sc.fk_user = ".((int) $user->id);
504
        $sql .= $this->buildWhere();
505
        $sql .= " GROUP BY dm";
506
        $sql .= $this->db->order('dm', 'DESC');
507
508
        $res_total = $this->_getNbByMonth($year, $sql, $format);
509
510
        $this->status = 6;
511
512
        $sql = "SELECT date_format(t.datec,'%m') as dm, count(t.opp_amount)";
513
        $sql .= " FROM " . MAIN_DB_PREFIX . "projet as t";
514
        // No check is done on company permission because readability is managed by public status of project and assignment.
515
        //if (! $user->rights->societe->client->voir && ! $user->soc_id)
516
        //  $sql .= " INNER JOIN " . MAIN_DB_PREFIX . "societe_commerciaux as sc ON sc.fk_soc=t.fk_soc AND sc.fk_user = ".((int) $user->id);
517
        $sql .= $this->buildWhere();
518
        $sql .= " GROUP BY dm";
519
        $sql .= $this->db->order('dm', 'DESC');
520
521
        $this->status = 0;
522
523
        $res_only_wined = $this->_getNbByMonth($year, $sql, $format);
524
525
        $res = array();
526
527
        foreach ($res_total as $key => $total_row) {
528
            //var_dump($total_row);
529
            if (!empty($total_row[1])) {
530
                $res[$key] = array($total_row[0], (100 * $res_only_wined[$key][1]) / $total_row[1]);
531
            } else {
532
                $res[$key] = array($total_row[0], 0);
533
            }
534
        }
535
        // var_dump($res);print '<br>';
536
        return $res;
537
    }
538
539
    /**
540
     * Return average of entity by month
541
     * @param   int     $year           year number
542
     * @return  array
543
     */
544
    protected function getAverageByMonth($year)
545
    {
546
        $sql = "SELECT date_format(datef,'%m') as dm, AVG(f." . $this->field . ")";
547
        $sql .= " FROM " . $this->from;
548
        $sql .= " WHERE f.datef BETWEEN '" . $this->db->idate(dol_get_first_day($year)) . "' AND '" . $this->db->idate(dol_get_last_day($year)) . "'";
549
        $sql .= " AND " . $this->where;
550
        $sql .= " GROUP BY dm";
551
        $sql .= $this->db->order('dm', 'DESC');
552
553
        return $this->_getAverageByMonth($year, $sql);
554
    }
555
}
556