]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - include/SugarObjects/templates/sale/vardefs.php
Release 6.5.0
[Github/sugarcrm.git] / include / SugarObjects / templates / sale / vardefs.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
40  * Description:  Defines the English language pack for the base application.
41  * Portions created by SugarCRM are Copyright (C) SugarCRM, Inc.
42  * All Rights Reserved.
43  * Contributor(s): ______________________________________..
44  ********************************************************************************/
45  
46 $vardefs = array(
47         'fields'=>array(
48                 'name'=>
49                  array(
50                         'name'=>'name',
51                         'type'=>'name',
52                     'link' => true, // bug 39288 
53                         'dbType'=>'varchar',
54                         'vname'=>'LBL_NAME',
55                         'comment'=>'Name of the Sale',
56                         'unified_search'=>true,
57                         'full_text_search'=>array('boost' => 3),
58                         'audited'=>true,
59                         'merge_filter'=>'selected',
60                         'required' => true,
61             'importable' => 'required',
62                 ),
63                 strtolower($object_name).'_type' =>
64                  array(
65                         'name'=>strtolower($object_name).'_type',
66                         'vname'=>'LBL_TYPE',
67                         'type'=>'enum',
68                         'options'=>strtolower($object_name).'_type_dom',
69                         'len' => 100,
70                         'comment'=>'The Sale is of this type',
71                 ),
72                 'description'=>
73                  array(
74                         'name'=>'description',
75                         'vname'=>'LBL_DESCRIPTION',
76                         'type'=>'text',
77                         'comment'=>'Description of the sale',
78             'rows' => 6,
79             'cols' => 80,
80                 ),
81                  'lead_source' =>
82                   array (
83                     'name' => 'lead_source',
84                     'vname' => 'LBL_LEAD_SOURCE',
85                     'type' => 'enum',
86                     'options' => 'lead_source_dom',
87                     'len' => '50',
88                     'comment' => 'Source of the sale',
89                   ),
90                     'amount' =>
91                   array (
92                     'name' => 'amount',
93                     'vname' => 'LBL_AMOUNT',
94                     'type' => 'currency',
95                     'dbType' => 'double',
96                     'comment' => 'Unconverted amount of the sale',
97                     'duplicate_merge'=>'disabled',
98                     'required' => true,
99                   ),
100                   'amount_usdollar' =>
101                   array (
102                     'name' => 'amount_usdollar',
103                     'vname' => 'LBL_AMOUNT_USDOLLAR',
104                     'type' => 'currency',
105                     'group'=>'amount',
106                     'dbType' => 'double',
107                     'disable_num_format' => true,
108                     'audited'=>true,
109                     'comment' => 'Formatted amount of the sale'
110                   ),
111           'currency_id' =>
112           array (
113             'name' => 'currency_id',
114             'type' => 'id',
115             'group'=>'currency_id',
116             'vname' => 'LBL_CURRENCY',
117             'function'=>array('name'=>'getCurrencyDropDown', 'returns'=>'html'),
118             'reportable'=>false,
119             'comment' => 'Currency used for display purposes'
120           ),
121           'currency_name'=>
122                array(
123                 'name'=>'currency_name',
124                 'rname'=>'name',
125                 'id_name'=>'currency_id',
126                 'vname'=>'LBL_CURRENCY_NAME',
127                 'type'=>'relate',
128                 'isnull'=>'true',
129                 'table' => 'currencies',
130                 'module'=>'Currencies',
131                 'source' => 'non-db',
132                 'function'=>array('name'=>'getCurrencyNameDropDown', 'returns'=>'html'),
133                 'studio' => 'false',
134             ),
135            'currency_symbol'=>
136                array(
137                 'name'=>'currency_symbol',
138                 'rname'=>'symbol',
139                 'id_name'=>'currency_id',
140                 'vname'=>'LBL_CURRENCY_SYMBOL',
141                 'type'=>'relate',
142                 'isnull'=>'true',
143                 'table' => 'currencies',
144                 'module'=>'Currencies',
145                 'source' => 'non-db',
146                 'function'=>array('name'=>'getCurrencySymbolDropDown', 'returns'=>'html'),
147             ),
148                    'date_closed' =>
149                   array (
150                     'name' => 'date_closed',
151                     'vname' => 'LBL_DATE_CLOSED',
152                     'type' => 'date',
153                     'audited'=>true,
154                     'required' => true,
155                     'comment' => 'Expected or actual date the sale will close',
156                     'enable_range_search' => true,
157                     'options' => 'date_range_search_dom',
158                   ),
159                   'next_step' =>
160                   array (
161                     'name' => 'next_step',
162                     'vname' => 'LBL_NEXT_STEP',
163                     'type' => 'varchar',
164                     'len' => '100',
165                     'comment' => 'The next step in the sales process',
166                   ),
167                   'sales_stage' =>
168                   array (
169                     'name' => 'sales_stage',
170                     'vname' => 'LBL_SALES_STAGE',
171                     'type' => 'enum',
172                     'options' => 'sales_stage_dom',
173                     'len' => 100,
174                     'audited'=>true,
175                     'comment' => 'Indication of progression towards closure',
176                         'required'=>true,
177             'importable' => 'required',
178                   ),
179                   'probability' =>
180                   array (
181                     'name' => 'probability',
182                     'vname' => 'LBL_PROBABILITY',
183                     'type' => 'int',
184                     'dbType' => 'double',
185                     'audited'=>true,
186                     'comment' => 'The probability of closure',
187                     'validation' => array('type' => 'range', 'min' => 0, 'max' => 100),
188                   )
189         )
190 );
191 ?>