]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - include/generic/SugarWidgets/SugarWidgetFieldcurrency.php
Release 6.5.10
[Github/sugarcrm.git] / include / generic / SugarWidgets / SugarWidgetFieldcurrency.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-2013 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 global $current_user;
43                                                                                        
44 $global_currency_obj = null;
45                                                                                        
46 function get_currency()
47 {
48         global $current_user,$global_currency_obj;
49         if (empty($global_currency_obj))
50         {
51         $global_currency_obj = new Currency();
52       //  $global_currency_symbol = '$';
53                                                                                        
54         if($current_user->getPreference('currency') )
55         {
56                 $global_currency_obj->retrieve($current_user->getPreference('currency'));
57         }
58         else
59         {
60                 $global_currency_obj->retrieve('-99');
61         }
62         }
63         return $global_currency_obj;
64 }
65
66
67 class SugarWidgetFieldCurrency extends SugarWidgetFieldInt
68 {
69     function SugarWidgetFieldCurrency(&$layout_manager) {
70         parent::__construct($layout_manager);
71         $this->reporter = $this->layout_manager->getAttribute('reporter');  
72     }
73     
74
75     function & displayList($layout_def)
76         {
77             global $locale;
78             $symbol = $locale->getPrecedentPreference('default_currency_symbol');
79             $currency_id = $locale->getPrecedentPreference('currency');
80
81             // If it's not grouped, or if it's grouped around a system currency column, look up the currency symbol so we can display it next to the amount
82             if ( empty($layout_def['group_function']) || $this->isSystemCurrency($layout_def) ) {
83                 $c = $this->getCurrency($layout_def);
84                 if(!empty($c['currency_id']) && !empty($c['currency_symbol']))
85                 {
86                     $symbol = $c['currency_symbol'];
87                     $currency_id = $c['currency_id'];
88                 }
89             }
90             $layout_def['currency_symbol'] = $symbol;
91             $layout_def['currency_id'] = $currency_id;
92             $display = $this->displayListPlain($layout_def);
93             
94         if(!empty($layout_def['column_key'])){
95             $field_def = $this->reporter->all_fields[$layout_def['column_key']];    
96         }else if(!empty($layout_def['fields'])){
97             $field_def = $layout_def['fields'];
98         }
99         $record = '';
100         if ($layout_def['table_key'] == 'self' && isset($layout_def['fields']['PRIMARYID']))
101             $record = $layout_def['fields']['PRIMARYID'];
102         else if (isset($layout_def['fields'][strtoupper($layout_def['table_alias']."_id")])){ 
103             $record = $layout_def['fields'][strtoupper($layout_def['table_alias']."_id")];
104         }
105         if (!empty($record)) {
106                 $field_name = $layout_def['name'];
107                 $field_type = $field_def['type'];
108                 $module = $field_def['module'];
109         
110                 $div_id = $module ."&$record&$field_name";
111                 $str = "<div id='$div_id'>".$display;
112             global $sugar_config;
113             if (isset ($sugar_config['enable_inline_reports_edit']) && $sugar_config['enable_inline_reports_edit']) {
114                 $str .= "&nbsp;" .SugarThemeRegistry::current()->getImage("edit_inline","border='0' alt='Edit Layout' align='bottom' onClick='SUGAR.reportsInlineEdit.inlineEdit(\"$div_id\",\"$value\",\"$module\",\"$record\",\"$field_name\",\"$field_type\",\"$currency_id\",\"$symbol\");'");
115             }
116                 $str .= "</div>";
117                 return $str;
118         }
119         else
120             return $display;
121     }
122                              
123     function displayListPlain($layout_def) {
124         $value = currency_format_number(
125             parent::displayListPlain($layout_def),
126             array_merge(
127                 array(
128                     'convert' => false,
129                 ),
130                 $this->getCurrency($layout_def)
131             )
132         );
133         return $value;
134     }                                                          
135  function queryFilterEquals(&$layout_def)
136  {
137      return $this->_get_column_select($layout_def)."=".$GLOBALS['db']->quote(unformat_number($layout_def['input_name0']))."\n";
138  }
139                                                                                        
140  function queryFilterNot_Equals(&$layout_def)
141  {
142      return $this->_get_column_select($layout_def)."!=".$GLOBALS['db']->quote(unformat_number($layout_def['input_name0']))."\n";
143  }
144                                                                                        
145  function queryFilterGreater(&$layout_def)
146  {
147      return $this->_get_column_select($layout_def)." > ".$GLOBALS['db']->quote(unformat_number($layout_def['input_name0']))."\n";
148  }
149                                                                                        
150  function queryFilterLess(&$layout_def)
151  {
152      return $this->_get_column_select($layout_def)." < ".$GLOBALS['db']->quote(unformat_number($layout_def['input_name0']))."\n";
153  }
154
155  function queryFilterBetween(&$layout_def){
156      return $this->_get_column_select($layout_def)." > ".$GLOBALS['db']->quote(unformat_number($layout_def['input_name0'])). " AND ". $this->_get_column_select($layout_def)." < ".$GLOBALS['db']->quote(unformat_number($layout_def['input_name1']))."\n";
157  }
158
159  function isSystemCurrency(&$layout_def)
160  {
161      if (strpos($layout_def['name'],'_usdoll') === false) {
162          return false;
163      } else {
164          return true;
165      }
166  }
167
168  function querySelect(&$layout_def)
169  {
170     // add currency column to select
171     $table = $this->getCurrencyIdTable($layout_def);
172     if($table) {
173         return $this->_get_column_select($layout_def)." ".$this->_get_column_alias($layout_def)." , ".$table.".currency_id ". $this->getTruncatedColumnAlias($this->_get_column_alias($layout_def)."_currency") . "\n";
174     }
175     return $this->_get_column_select($layout_def)." ".$this->_get_column_alias($layout_def)."\n";
176  }
177
178  function queryGroupBy($layout_def)
179  {
180     // add currency column to group by
181     $table = $this->getCurrencyIdTable($layout_def);
182     if($table) {
183         return $this->_get_column_select($layout_def)." , ".$table.".currency_id \n";
184     }
185     return $this->_get_column_select($layout_def)." \n";
186  }
187
188  function getCurrencyIdTable($layout_def)
189  {
190     // We need to fetch the currency id as well
191     if ( !$this->isSystemCurrency($layout_def) && empty($layout_def['group_function'])) {
192
193         if ( !empty($layout_def['table_alias']) ) {
194             $table = $layout_def['table_alias'];
195         } else {
196             $table = '';
197         }
198
199         $real_table = '';
200         if (!empty($this->reporter->all_fields[$layout_def['column_key']]['real_table']))
201             $real_table = $this->reporter->all_fields[$layout_def['column_key']]['real_table'];
202
203         $add_currency_id = false;
204         if(!empty($table)) {
205             $cols = $GLOBALS['db']->getHelper()->get_columns($real_table);
206             $add_currency_id = isset($cols['currency_id']) ? true : false;
207
208             if(!$add_currency_id && preg_match('/.*?_cstm$/i', $real_table)) {
209                 $table = str_replace('_cstm', '', $table);
210                 $cols = $GLOBALS['db']->getHelper()->get_columns($table);
211                 $add_currency_id = isset($cols['currency_id']) ? true : false;
212             }
213             if($add_currency_id) {
214                 return $table;
215             }
216         }
217     }
218     return false;
219  }
220
221     /**
222      * Return currency for layout_def
223      * @param $layout_def mixed
224      * @return array Array with currency symbol and currency ID
225      */
226     protected function getCurrency($layout_def)
227     {
228         $currency_id = false;
229         $currency_symbol = false;
230         if(isset($layout_def['currency_symbol']) && isset($layout_def['currency_id']))
231         {
232             $currency_symbol = $layout_def['currency_symbol'];
233             $currency_id = $layout_def['currency_id'];
234         }
235         else
236         {
237             $key = strtoupper(isset($layout_def['varname']) ? $layout_def['varname'] : $this->_get_column_alias($layout_def));
238             if ( $this->isSystemCurrency($layout_def) )
239             {
240                 $currency_id = '-99';
241             }
242             elseif (isset($layout_def['fields'][$key.'_CURRENCY']))
243             {
244                 $currency_id = $layout_def['fields'][$key.'_CURRENCY'];
245             }
246             elseif(isset($layout_def['fields'][$this->getTruncatedColumnAlias($this->_get_column_alias($layout_def)."_currency")]))
247             {
248                 $currency_id = $layout_def['fields'][$this->getTruncatedColumnAlias($this->_get_column_alias($layout_def)."_currency")];
249             }
250             if($currency_id)
251             {
252                 $currency = BeanFactory::getBean('Currencies', $currency_id);
253                 if(!empty($currency ->symbol))
254                 {
255                     $currency_symbol = $currency ->symbol;
256                 }
257             }
258         }
259         return array('currency_symbol' => $currency_symbol, 'currency_id' => $currency_id);
260     }
261 }
262 ?>