]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - include/generic/SugarWidgets/SugarWidgetFieldcurrency_id.php
Release 6.5.8
[Github/sugarcrm.git] / include / generic / SugarWidgets / SugarWidgetFieldcurrency_id.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-2012 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 class SugarWidgetFieldcurrency_id extends SugarWidgetFieldEnum
40 {
41     /**
42      * Returns list of beans of currencies including default system currency
43      *
44      * @param bool $refresh cache
45      * @return array list of beans
46      */
47     static public function getCurrenciesList($refresh = false)
48     {
49         static $list = false;
50         if ($list === false || $refresh == true)
51         {
52             $currency = new Currency();
53             $list = $currency->get_full_list('name');
54             $currency->retrieve('-99');
55             if (is_array($list))
56             {
57                 $list = array_merge(array($currency), $list);
58             }
59             else
60             {
61                 $list = array($currency);
62             }
63         }
64         return $list;
65     }
66
67     /**
68      * Overriding display of value of currency because of currencies are not stored in app_list_strings
69      *
70      * @param array $layout_def
71      * @return string for display
72      */
73     public function &displayListPlain($layout_def)
74     {
75         static $currencies;
76         $value = $this->_get_list_value($layout_def);
77         if (empty($currencies[$value]))
78         {
79             $currency = new Currency();
80             $currency->retrieve($value);
81             $currencies[$value] = $currency->symbol . ' ' . $currency->iso4217;
82         }
83         return $currencies[$value];
84     }
85
86     /**
87      * Overriding sorting because of default currency is not present in DB
88      *
89      * @param array $layout_def
90      * @return string for order by
91      */
92     public function queryOrderBy($layout_def)
93     {
94         $tmpList = self::getCurrenciesList();
95         $list = array();
96         foreach ($tmpList as $bean)
97         {
98             $list[$bean->id] = $bean->symbol . ' ' . $bean->iso4217;
99         }
100
101         $field_def = $this->reporter->all_fields[$layout_def['column_key']];
102         if (!empty ($field_def['sort_on']))
103         {
104             $order_by = $layout_def['table_alias'].".".$field_def['sort_on'];
105         }
106         else
107         {
108             $order_by = $this->_get_column_select($layout_def);
109         }
110
111         if (empty ($layout_def['sort_dir']) || $layout_def['sort_dir'] == 'a')
112         {
113             $order_dir = "ASC";
114         }
115         else
116         {
117             $order_dir = "DESC";
118         }
119         return $this->reporter->db->orderByEnum($order_by, $list, $order_dir);
120     }
121 }