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