dolibarr 22.0.5
graph_opportunities.inc.php
1<?php
2/* Copyright (C) 2013-2020 Laurent Destailleur <eldy@users.sourceforge.net>
3 * Copyright (C) 2024-2025 MDW <mdeweerd@users.noreply.github.com>
4 * Copyright (C) 2024-2025 Frédéric France <frederic.france@free.fr>
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 3 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program. If not, see <https://www.gnu.org/licenses/>.
18 */
19
20// variable $listofopplabel and $listofoppstatus should be defined
32'
33@phan-var-force string $projectsListId
34@phan-var-force int $socid
35@phan-var-force string[] $listofoppstatus
36@phan-var-force ?array<int,string> $listofopplabel
37@phan-var-force array<string,string> $colorseries
38';
39
40if (getDolGlobalString('PROJECT_USE_OPPORTUNITIES')) {
41 $sql = "SELECT p.fk_opp_status as opp_status, cls.code, COUNT(p.rowid) as nb, SUM(p.opp_amount) as opp_amount, SUM(p.opp_amount * p.opp_percent) as ponderated_opp_amount";
42 $sql .= " FROM ".MAIN_DB_PREFIX."projet as p LEFT JOIN ".MAIN_DB_PREFIX."c_lead_status as cls ON p.fk_opp_status = cls.rowid"; // If lead status has been removed, we must show it in stats as unknown
43 $sql .= " WHERE p.entity IN (".getEntity('project').")";
44 $sql .= " AND p.fk_statut = 1"; // Opened projects only
45 if ($mine || !$user->hasRight('projet', 'all', 'lire')) {
46 $sql .= " AND p.rowid IN (".$db->sanitize($projectsListId).")";
47 }
48 if ($socid > 0) {
49 $sql .= " AND (p.fk_soc IS NULL OR p.fk_soc = 0 OR p.fk_soc = ".((int) $socid).")";
50 }
51 $sql .= " GROUP BY p.fk_opp_status, cls.code";
52 $resql = $db->query($sql);
53
54 if ($resql) {
55 $num = $db->num_rows($resql);
56 $i = 0;
57
58 $total = 0;
59 $totalnb = 0;
60 $totaloppnb = 0;
61 $totalamount = 0;
62 $ponderated_opp_amount = 0;
63 $valsnb = array();
64 $valsamount = array();
65 $dataseries = array();
66 // -1=Canceled, 0=Draft, 1=Validated, (2=Accepted/On process not managed for sale orders), 3=Closed (Sent/Received, billed or not)
67 while ($i < $num) {
68 $obj = $db->fetch_object($resql);
69 if ($obj) {
70 $valsnb[$obj->opp_status] = $obj->nb;
71 $valsamount[$obj->opp_status] = $obj->opp_amount;
72 $totalnb += $obj->nb;
73 if ($obj->opp_status) {
74 $totaloppnb += $obj->nb;
75 }
76 if (!in_array($obj->code, array('WON', 'LOST'))) {
77 $totalamount += $obj->opp_amount;
78 $ponderated_opp_amount += $obj->ponderated_opp_amount;
79 }
80 $total += $obj->nb;
81 }
82 $i++;
83 }
84 $db->free($resql);
85
86 $ponderated_opp_amount /= 100;
87
88 print '<div class="div-table-responsive-no-min">';
89 print '<table class="noborder nohover centpercent">';
90 print '<tr class="liste_titre"><th colspan="2">'.$langs->trans("Statistics").' - '.$langs->trans("OpportunitiesStatusForOpenedProjects").'</th></tr>'."\n";
91
92 $listofstatus = array_keys($listofoppstatus);
93 // Complete with values found into database and not into the dictionary
94 foreach ($valsamount as $key => $val) {
95 if (!in_array($key, $listofstatus) && $key) {
96 $listofstatus[] = $key;
97 }
98 }
99
100 foreach ($listofstatus as $status) {
101 $labelStatus = '';
102
103 $code = dol_getIdFromCode($db, $status, 'c_lead_status', 'rowid', 'code');
104 if ($code) {
105 $labelStatus = $langs->transnoentitiesnoconv("OppStatus".$code);
106 if ($code == 'WON' || $code == 'LOST') {
107 $labelStatus = $langs->transnoentitiesnoconv("OppStatus".$code).' ('.$langs->transnoentitiesnoconv("NotClosedYet").")";
108 }
109 }
110 if (empty($labelStatus) && isset($listofopplabel[$status])) {
111 $labelStatus = $listofopplabel[$status];
112 }
113 if (empty($labelStatus)) {
114 $labelStatus = $langs->transnoentitiesnoconv('OldValue', $status); // When id is id of an entry no more in dictionary for example.
115 }
116
117 //$labelStatus .= ' ('.$langs->trans("Coeff").': '.price2num($listofoppstatus[$status]).')';
118 //$labelStatus .= ' - '.price2num($listofoppstatus[$status]).'%';
119
120 $dataseries[] = array($labelStatus, (isset($valsamount[$status]) ? (float) $valsamount[$status] : 0));
121 if (!$conf->use_javascript_ajax) {
122 print '<tr class="oddeven">';
123 print '<td>'.$labelStatus.'</td>';
124 print '<td class="right"><a href="list.php?statut='.$status.'">'.price((isset($valsamount[$status]) ? (float) $valsamount[$status] : 0), 0, '', 1, -1, -1, $conf->currency).'</a></td>';
125 print "</tr>\n";
126 }
127 }
128 if ($conf->use_javascript_ajax) {
129 print '<tr><td class="center nopaddingleftimp nopaddingrightimp" colspan="2">';
130
131 include_once DOL_DOCUMENT_ROOT.'/core/class/dolgraph.class.php';
132 $dolgraph = new DolGraph();
133 $dolgraph->SetData($dataseries);
134 $dolgraph->SetDataColor(array_values($colorseries));
135 $dolgraph->setShowLegend(2);
136 $dolgraph->setShowPercent(1);
137 $dolgraph->SetType(array('pie'));
138 //$dolgraph->setWidth('100%');
139 $dolgraph->SetHeight('200');
140 $dolgraph->draw('idgraphstatus');
141 print $dolgraph->show($totaloppnb ? 0 : 1);
142
143 print '</td></tr>';
144 }
145 //if ($totalinprocess != $total)
146 //print '<tr class="liste_total"><td>'.$langs->trans("Total").' ('.$langs->trans("CustomersOrdersRunning").')</td><td class="right">'.$totalinprocess.'</td></tr>';
147 print '<tr class="liste_total"><td class="maxwidth200 tdoverflow">'.$langs->trans("OpportunityTotalAmount").' ('.$langs->trans("WonLostExcluded").')</td><td class="right">'.price($totalamount, 0, '', 1, -1, -1, $conf->currency).'</td></tr>';
148 print '<tr class="liste_total"><td class="minwidth200 tdoverflow">';
149 //print $langs->trans("OpportunityPonderatedAmount").' ('.$langs->trans("WonLostExcluded").')';
150 print $form->textwithpicto($langs->trans("OpportunityPonderatedAmount").' ('.$langs->trans("WonLostExcluded").')', $langs->trans("OpportunityPonderatedAmountDesc"), 1);
151 print '</td><td class="right">'.price(price2num($ponderated_opp_amount, 'MT'), 0, '', 1, -1, -1, $conf->currency).'</td></tr>';
152 print "</table>";
153 print "</div>";
154
155 print "<br>";
156 } else {
157 dol_print_error($db);
158 }
159}
Class to build graphs.
dol_getIdFromCode($db, $key, $tablename, $fieldkey='code', $fieldid='id', $entityfilter=0, $filters='', $useCache=true)
Return an id or code from a code or id.
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.
dol_print_error($db=null, $error='', $errors=null)
Displays error message system with all the information to facilitate the diagnosis and the escalation...
getDolGlobalString($key, $default='')
Return a Dolibarr global constant string value.
global $conf
The following vars must be defined: $type2label $form $conf, $lang, The following vars may also be de...
Definition member.php:79