]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - modules/Charts/Dashlets/PipelineBySalesStageDashlet/PipelineBySalesStageDashlet.php
Release 6.4.0
[Github/sugarcrm.git] / modules / Charts / Dashlets / PipelineBySalesStageDashlet / PipelineBySalesStageDashlet.php
1 <?php
2 if(!defined('sugarEntry') || !sugarEntry) die('Not A Valid Entry Point');
3 /*********************************************************************************
4  * SugarCRM Community Edition is a customer relationship management program developed by
5  * SugarCRM, Inc. Copyright (C) 2004-2011 SugarCRM Inc.
6  * 
7  * This program is free software; you can redistribute it and/or modify it under
8  * the terms of the GNU Affero General Public License version 3 as published by the
9  * Free Software Foundation with the addition of the following permission added
10  * to Section 15 as permitted in Section 7(a): FOR ANY PART OF THE COVERED WORK
11  * IN WHICH THE COPYRIGHT IS OWNED BY SUGARCRM, SUGARCRM DISCLAIMS THE WARRANTY
12  * OF NON INFRINGEMENT OF THIRD PARTY RIGHTS.
13  * 
14  * This program is distributed in the hope that it will be useful, but WITHOUT
15  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
16  * FOR A PARTICULAR PURPOSE.  See the GNU Affero General Public License for more
17  * details.
18  * 
19  * You should have received a copy of the GNU Affero General Public License along with
20  * this program; if not, see http://www.gnu.org/licenses or write to the Free
21  * Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
22  * 02110-1301 USA.
23  * 
24  * You can contact SugarCRM, Inc. headquarters at 10050 North Wolfe Road,
25  * SW2-130, Cupertino, CA 95014, USA. or at email address contact@sugarcrm.com.
26  * 
27  * The interactive user interfaces in modified source and object code versions
28  * of this program must display Appropriate Legal Notices, as required under
29  * Section 5 of the GNU Affero General Public License version 3.
30  * 
31  * In accordance with Section 7(b) of the GNU Affero General Public License version 3,
32  * these Appropriate Legal Notices must retain the display of the "Powered by
33  * SugarCRM" logo. If the display of the logo is not reasonably feasible for
34  * technical reasons, the Appropriate Legal Notices must display the words
35  * "Powered by SugarCRM".
36  ********************************************************************************/
37
38
39
40
41
42 require_once('include/Dashlets/DashletGenericChart.php');
43
44 class PipelineBySalesStageDashlet extends DashletGenericChart
45 {
46     public $pbss_date_start;
47     public $pbss_date_end;
48     public $pbss_sales_stages = array();
49
50     /**
51      * @see DashletGenericChart::$_seedName
52      */
53     protected $_seedName = 'Opportunities';
54
55     /**
56      * @see DashletGenericChart::__construct()
57      */
58     public function __construct(
59         $id,
60         array $options = null
61         )
62     {
63         global $timedate;
64
65         if(empty($options['pbss_date_start']))
66             $options['pbss_date_start'] = $timedate->nowDbDate();
67
68         if(empty($options['pbss_date_end']))
69             $options['pbss_date_end'] = $timedate->asDbDate($timedate->getNow()->modify("+6 months"));
70
71         if(empty($options['title']))
72                 $options['title'] = translate('LBL_PIPELINE_FORM_TITLE', 'Home');
73
74         parent::__construct($id,$options);
75     }
76
77     /**
78      * @see DashletGenericChart::displayOptions()
79      */
80     public function displayOptions()
81     {
82         global $app_list_strings;
83
84         if (!empty($this->pbss_sales_stages) && count($this->pbss_sales_stages) > 0)
85             foreach ($this->pbss_sales_stages as $key)
86                 $selected_datax[] = $key;
87         else
88             $selected_datax = array_keys($app_list_strings['sales_stage_dom']);
89
90         $this->_searchFields['pbss_sales_stages']['options'] = $app_list_strings['sales_stage_dom'];
91         $this->_searchFields['pbss_sales_stages']['input_name0'] = $selected_datax;
92
93         return parent::displayOptions();
94     }
95
96     /**
97      * @see DashletGenericChart::display()
98      */
99     public function display()
100     {
101         global $current_user, $sugar_config;
102
103         require_once('include/SugarCharts/SugarChartFactory.php');
104         $sugarChart = SugarChartFactory::getInstance();
105         $sugarChart->base_url = array(
106             'module' => 'Opportunities',
107             'action' => 'index',
108             'query' => 'true',
109             'searchFormTab' => 'advanced_search',
110             );
111         $sugarChart->url_params = array(  );
112         $sugarChart->group_by = $this->constructGroupBy();
113         $sugarChart->setData($this->getChartData($this->constructQuery()));
114         $sugarChart->is_currency = true;
115         $sugarChart->thousands_symbol = translate('LBL_OPP_THOUSANDS', 'Charts');
116
117         $currency_symbol = $sugar_config['default_currency_symbol'];
118         if ($current_user->getPreference('currency')){
119
120             $currency = new Currency();
121             $currency->retrieve($current_user->getPreference('currency'));
122             $currency_symbol = $currency->symbol;
123         }
124         $subtitle = translate('LBL_OPP_SIZE', 'Charts') . " " . $currency_symbol . "1" . translate('LBL_OPP_THOUSANDS', 'Charts');
125
126         $pipeline_total_string = translate('LBL_TOTAL_PIPELINE', 'Charts') . $sugarChart->currency_symbol . format_number($sugarChart->getTotal(), 0, 0, array('convert'=>true)) . $sugarChart->thousands_symbol;
127             $sugarChart->setProperties($pipeline_total_string, $subtitle, 'horizontal group by chart');
128
129         $xmlFile = $sugarChart->getXMLFileName($this->id);
130         $sugarChart->saveXMLFile($xmlFile, $sugarChart->generateXML());
131
132         return $this->getTitle('') . '<div align="center">' . $sugarChart->display($this->id, $xmlFile, '100%', '480', false) . '</div>'. $this->processAutoRefresh();
133     }
134
135         /**
136      * awu: Bug 16794 - this function is a hack to get the correct sales stage order until
137      * i can clean it up later
138      *
139      * @param  $query string
140      * @return array
141      */
142     private function getChartData(
143         $query
144         )
145     {
146         global $app_list_strings, $db;
147
148         $data = array();
149         $temp_data = array();
150         $selected_datax = array();
151
152         $user_sales_stage = $this->pbss_sales_stages;
153         $tempx = $user_sales_stage;
154
155         //set $datax using selected sales stage keys
156         if (count($tempx) > 0) {
157             foreach ($tempx as $key) {
158                 $datax[$key] = $app_list_strings['sales_stage_dom'][$key];
159                 $selected_datax[] = $key;
160             }
161         }
162         else {
163             $datax = $app_list_strings['sales_stage_dom'];
164             $selected_datax = array_keys($app_list_strings['sales_stage_dom']);
165         }
166
167         $result = $db->query($query);
168         while($row = $db->fetchByAssoc($result, false))
169                 $temp_data[] = $row;
170
171                 // reorder and set the array based on the order of selected_datax
172         foreach($selected_datax as $sales_stage){
173                 foreach($temp_data as $key => $value){
174                         if ($value['sales_stage'] == $sales_stage){
175                                 $value['sales_stage'] = $app_list_strings['sales_stage_dom'][$value['sales_stage']];
176                                 $value['key'] = $sales_stage;
177                                 $value['value'] = $value['sales_stage'];
178                                 $data[] = $value;
179                                 unset($temp_data[$key]);
180                         }
181                 }
182         }
183         return $data;
184     }
185
186     /**
187      * @see DashletGenericChart::constructQuery()
188      */
189     protected function constructQuery()
190     {
191         $query = "  SELECT opportunities.sales_stage,
192                         users.user_name,
193                         opportunities.assigned_user_id,
194                         count(*) AS opp_count,
195                         sum(amount_usdollar/1000) AS total
196                     FROM users,opportunities  ";
197         $query .= " WHERE opportunities.date_closed >= ". db_convert("'".$this->pbss_date_start."'",'date').
198                         " AND opportunities.date_closed <= ".db_convert("'".$this->pbss_date_end."'",'date') .
199                         " AND opportunities.assigned_user_id = users.id  AND opportunities.deleted=0 ";
200         if ( count($this->pbss_sales_stages) > 0 )
201             $query .= " AND opportunities.sales_stage IN ('" . implode("','",$this->pbss_sales_stages) . "') ";
202         $query .= " GROUP BY opportunities.sales_stage ,users.user_name,opportunities.assigned_user_id";
203
204         return $query;
205     }
206
207     /**
208      * @see DashletGenericChart::constructGroupBy()
209      */
210     protected function constructGroupBy()
211     {
212        return array(
213            'sales_stage',
214            'user_name',
215            );
216     }
217 }