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