36@phan-var-force string $projectsListId
37@phan-var-force int $socid
38@phan-var-force string[] $listofoppstatus
39@phan-var-force ?array<int,string> $listofopplabel
40@phan-var-force array<string,string> $colorseries
44 $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";
45 $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";
46 $sql .=
" WHERE p.entity IN (".getEntity(
'project').
")";
47 $sql .=
" AND p.fk_statut = 1";
48 if ($mine || !$user->hasRight(
'projet',
'all',
'lire')) {
49 $sql .=
" AND p.rowid IN (".$db->sanitize($projectsListId).
")";
52 $sql .=
" AND (p.fk_soc IS NULL OR p.fk_soc = 0 OR p.fk_soc = ".((int) $socid).
")";
54 $sql .=
" GROUP BY p.fk_opp_status, cls.code";
55 $resql =
$db->query($sql);
58 $num =
$db->num_rows($resql);
65 $ponderated_opp_amount = 0;
67 $valsamount = array();
68 $dataseries = array();
71 $obj =
$db->fetch_object($resql);
73 $valsnb[$obj->opp_status] = $obj->nb;
74 $valsamount[$obj->opp_status] = $obj->opp_amount;
76 if ($obj->opp_status) {
77 $totaloppnb += $obj->nb;
79 if (!in_array($obj->code, array(
'WON',
'LOST'))) {
80 $totalamount += $obj->opp_amount;
81 $ponderated_opp_amount += $obj->ponderated_opp_amount;
89 $ponderated_opp_amount /= 100;
91 print
'<div class="div-table-responsive-no-min">';
92 print
'<table class="noborder nohover centpercent">';
93 print
'<tr class="liste_titre"><th colspan="2">'.$langs->trans(
"Statistics").
' - '.$langs->trans(
"OpportunitiesStatusForOpenedProjects").
'</th></tr>'.
"\n";
95 $listofstatus = array_keys($listofoppstatus);
97 foreach ($valsamount as $key => $val) {
98 if (!in_array($key, $listofstatus) && $key) {
99 $listofstatus[] = $key;
103 foreach ($listofstatus as $status) {
108 $labelStatus = $langs->transnoentitiesnoconv(
"OppStatus".$code);
109 if ($code ==
'WON' || $code ==
'LOST') {
110 $labelStatus = $langs->transnoentitiesnoconv(
"OppStatus".$code).
' ('.$langs->transnoentitiesnoconv(
"NotClosedYet").
")";
113 if (empty($labelStatus) && isset($listofopplabel[$status])) {
114 $labelStatus = $listofopplabel[$status];
116 if (empty($labelStatus)) {
117 $labelStatus = $langs->transnoentitiesnoconv(
'OldValue', $status);
123 $dataseries[] = array($labelStatus, (isset($valsamount[$status]) ? (
float) $valsamount[$status] : 0));
124 if (!
$conf->use_javascript_ajax) {
125 print
'<tr class="oddeven">';
126 print
'<td>'.$labelStatus.
'</td>';
127 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>';
131 if (
$conf->use_javascript_ajax) {
132 print
'<tr><td class="center nopaddingleftimp nopaddingrightimp pair nohover" colspan="2">';
134 include_once DOL_DOCUMENT_ROOT.
'/core/class/dolgraph.class.php';
136 $dolgraph->SetData($dataseries);
137 $dolgraph->SetDataColor(array_values($colorseries));
138 $dolgraph->setShowLegend(2);
139 $dolgraph->setShowPercent(1);
140 $dolgraph->SetType(array(
'pie'));
142 $dolgraph->SetHeight(
'200');
143 $dolgraph->draw(
'idgraphstatus');
144 print $dolgraph->show($totaloppnb ? 0 : 1);
150 print
'<tr class="liste_total"><td class="maxwidth200 tdoverflow">';
151 print $form->textwithpicto($langs->trans(
"OpportunityTotalAmount"), $langs->trans(
"WonLostExcluded")).
'</td><td class="right">'.
price($totalamount, 0,
'', 1, -1, -1,
$conf->currency).
'</td></tr>';
152 print
'<tr class="liste_total"><td class="minwidth200 tdoverflow">';
154 print $form->textwithpicto($langs->trans(
"OpportunityPonderatedAmount"), $langs->trans(
"OpportunityPonderatedAmountDesc").
' ('.$langs->trans(
"WonLostExcluded").
')', 1);
155 print
'</td><td class="right">'.price(
price2num($ponderated_opp_amount,
'MT'), 0,
'', 1, -1, -1,
$conf->currency).
'</td></tr>';
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.