34 $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";
35 $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";
36 $sql .=
" WHERE p.entity IN (".getEntity(
'project').
")";
37 $sql .=
" AND p.fk_statut = 1";
38 if ($mine || !$user->hasRight(
'projet',
'all',
'lire')) {
39 $sql .=
" AND p.rowid IN (".$db->sanitize($projectsListId).
")";
42 $sql .=
" AND (p.fk_soc IS NULL OR p.fk_soc = 0 OR p.fk_soc = ".((int) $socid).
")";
44 $sql .=
" GROUP BY p.fk_opp_status, cls.code";
45 $resql = $db->query($sql);
48 $num = $db->num_rows($resql);
55 $ponderated_opp_amount = 0;
57 $valsamount = array();
58 $dataseries = array();
61 $obj = $db->fetch_object($resql);
63 $valsnb[$obj->opp_status] = $obj->nb;
64 $valsamount[$obj->opp_status] = $obj->opp_amount;
66 if ($obj->opp_status) {
67 $totaloppnb += $obj->nb;
69 if (!in_array($obj->code, array(
'WON',
'LOST'))) {
70 $totalamount += $obj->opp_amount;
71 $ponderated_opp_amount += $obj->ponderated_opp_amount;
79 $ponderated_opp_amount /= 100;
81 print
'<div class="div-table-responsive-no-min">';
82 print
'<table class="noborder nohover centpercent">';
83 print
'<tr class="liste_titre"><th colspan="2">'.$langs->trans(
"Statistics").
' - '.$langs->trans(
"OpportunitiesStatusForOpenedProjects").
'</th></tr>'.
"\n";
85 $listofstatus = array_keys($listofoppstatus);
87 foreach ($valsamount as $key => $val) {
88 if (!in_array($key, $listofstatus) && $key) {
89 $listofstatus[] = $key;
93 foreach ($listofstatus as $status) {
98 $labelStatus = $langs->transnoentitiesnoconv(
"OppStatus".$code);
99 if ($code ==
'WON' || $code ==
'LOST') {
100 $labelStatus = $langs->transnoentitiesnoconv(
"OppStatus".$code).
' ('.$langs->transnoentitiesnoconv(
"NotClosedYet").
")";
103 if (empty($labelStatus) && isset($listofopplabel[$status])) {
104 $labelStatus = $listofopplabel[$status];
106 if (empty($labelStatus)) {
107 $labelStatus = $langs->transnoentitiesnoconv(
'OldValue', $status);
113 $dataseries[] = array($labelStatus, (isset($valsamount[$status]) ? (
float) $valsamount[$status] : 0));
114 if (!
$conf->use_javascript_ajax) {
115 print
'<tr class="oddeven">';
116 print
'<td>'.$labelStatus.
'</td>';
117 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>';
121 if (
$conf->use_javascript_ajax) {
122 print
'<tr><td class="center nopaddingleftimp nopaddingrightimp" colspan="2">';
124 include_once DOL_DOCUMENT_ROOT.
'/core/class/dolgraph.class.php';
126 $dolgraph->SetData($dataseries);
127 $dolgraph->SetDataColor(array_values($colorseries));
128 $dolgraph->setShowLegend(2);
129 $dolgraph->setShowPercent(1);
130 $dolgraph->SetType(array(
'pie'));
132 $dolgraph->SetHeight(
'200');
133 $dolgraph->draw(
'idgraphstatus');
134 print $dolgraph->show($totaloppnb ? 0 : 1);
140 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>';
141 print
'<tr class="liste_total"><td class="minwidth200 tdoverflow">';
143 print $form->textwithpicto($langs->trans(
"OpportunityPonderatedAmount").
' ('.$langs->trans(
"WonLostExcluded").
')', $langs->trans(
"OpportunityPonderatedAmountDesc"), 1);
144 print
'</td><td class="right">'.price(
price2num($ponderated_opp_amount,
'MT'), 0,
'', 1, -1, -1,
$conf->currency).
'</td></tr>';
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_getIdFromCode($db, $key, $tablename, $fieldkey='code', $fieldid='id', $entityfilter=0, $filters='')
Return an id or code from a code or id.
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...