]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - modules/Leads/vardefs.php
Release 6.5.0
[Github/sugarcrm.git] / modules / Leads / 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 $dictionary['Lead'] = array('table' => 'leads','audited'=>true, 'unified_search' => true, 'full_text_search' => true, 'unified_search_default_enabled' => true, 'duplicate_merge'=>true,
39                 'comment' => 'Leads are persons of interest early in a sales cycle', 'fields' => array (
40
41
42   'converted' =>
43   array (
44     'name' => 'converted',
45     'vname' => 'LBL_CONVERTED',
46     'type' => 'bool',
47     'default' => '0',
48     'comment' => 'Has Lead been converted to a Contact (and other Sugar objects)'
49   ),
50   'refered_by' =>
51   array (
52     'name' => 'refered_by',
53     'vname' => 'LBL_REFERED_BY',
54     'type' => 'varchar',
55     'len' => '100',
56     'comment' => 'Identifies who refered the lead',
57     'merge_filter' => 'enabled',
58   ),
59   'lead_source' =>
60   array (
61     'name' => 'lead_source',
62     'vname' => 'LBL_LEAD_SOURCE',
63     'type' => 'enum',
64     'options'=> 'lead_source_dom',
65     'len' => '100',
66         'audited'=>true,
67         'comment' => 'Lead source (ex: Web, print)',
68     'merge_filter' => 'enabled',
69   ),
70   'lead_source_description' =>
71   array (
72     'name' => 'lead_source_description',
73     'vname' => 'LBL_LEAD_SOURCE_DESCRIPTION',
74     'type' => 'text',
75     'group'=>'lead_source',
76     'comment' => 'Description of the lead source'
77   ),
78   'status' =>
79   array (
80     'name' => 'status',
81     'vname' => 'LBL_STATUS',
82     'type' => 'enum',
83     'len' => '100',
84     'options' => 'lead_status_dom',
85         'audited'=>true,
86         'comment' => 'Status of the lead',
87     'merge_filter' => 'enabled',
88   ),
89   'status_description' =>
90   array (
91     'name' => 'status_description',
92     'vname' => 'LBL_STATUS_DESCRIPTION',
93     'type' => 'text',
94     'group'=>'status',
95     'comment' => 'Description of the status of the lead'
96   ),
97   'department' =>
98   array (
99     'name' => 'department',
100     'vname' => 'LBL_DEPARTMENT',
101     'type' => 'varchar',
102     'len' => '100',
103     'comment' => 'Department the lead belongs to',
104     'merge_filter' => 'enabled',
105   ),
106   'reports_to_id' =>
107   array (
108     'name' => 'reports_to_id',
109     'vname' => 'LBL_REPORTS_TO_ID',
110     'type' => 'id',
111     'reportable'=>false,
112     'comment' => 'ID of Contact the Lead reports to'
113   ),
114     'report_to_name' =>
115   array (
116     'name' => 'report_to_name',
117     'rname' => 'name',
118     'id_name' => 'reports_to_id',
119     'vname' => 'LBL_REPORTS_TO',
120     'type' => 'relate',
121     'table' => 'contacts',
122     'isnull' => 'true',
123     'module' => 'Contacts',
124     'dbType' => 'varchar',
125     'len' => 'id',
126         'source'=>'non-db',
127     'reportable'=>false,
128     'massupdate' => false,
129   ),
130     'reports_to_link' => array (
131             'name' => 'reports_to_link',
132         'type' => 'link',
133         'relationship' => 'lead_direct_reports',
134                 'link_type'=>'one',
135                 'side'=>'right',
136         'source'=>'non-db',
137                 'vname'=>'LBL_REPORTS_TO',
138         'reportable'=>false
139   ),
140     'reportees' => array (
141             'name' => 'reportees',
142         'type' => 'link',
143         'relationship' => 'lead_direct_reports',
144                 'link_type'=>'many',
145                 'side'=>'left',
146         'source'=>'non-db',
147                 'vname'=>'LBL_REPORTS_TO',
148         'reportable'=>false
149   ),
150     'contacts'=> array(
151         'name' => 'contacts',
152         'type' => 'link',
153         'relationship' => 'contact_leads',
154         'module' => "Contacts",
155         'source' => 'non-db',
156         'vname' => 'LBL_CONTACTS',
157         'reportable'=>false
158     ),
159   /*'acc_name_from_accounts' =>
160   array (
161         'name' => 'acc_name_from_accounts',
162         'rname' => 'name',
163         'id_name' => 'account_id',
164         'vname' => 'LBL_ACCOUNT_NAME_1',
165         'type' => 'relate',
166         'link' => 'accounts',
167         'table' => 'accounts',
168         'join_name'=>'accounts',
169         'isnull' => 'true',
170         'module' => 'Accounts',
171         'dbType' => 'varchar',
172         'len' => '255',
173         'source' => 'non-db',
174         'unified_search' => false,
175         'massupdate' => false,
176         'studio' => 'false',
177   ),
178   */
179   'account_name' =>
180   array (
181         'name' => 'account_name',
182         'vname' => 'LBL_ACCOUNT_NAME',
183         'type' => 'varchar',
184         'len' => '255',
185         'unified_search' => true,
186         'full_text_search' => 1,
187         'comment' => 'Account name for lead',
188   ),
189
190
191   'accounts' =>
192   array (
193         'name' => 'accounts',
194         'type' => 'link',
195         'relationship' => 'account_leads',
196         'link_type' => 'one',
197         'source' => 'non-db',
198         'vname' => 'LBL_ACCOUNT',
199     'duplicate_merge'=> 'disabled',
200   ),
201   
202   'account_description' =>
203   array (
204     'name' => 'account_description',
205     'vname' => 'LBL_ACCOUNT_DESCRIPTION',
206     'type' => 'text',
207     'group'=>'account_name',
208     'unified_search' => true,
209     'full_text_search' => 1,
210     'comment' => 'Description of lead account'
211   ),
212   'contact_id' =>
213   array (
214     'name' => 'contact_id',
215     'type' => 'id',
216     'reportable'=>false,
217     'vname'=>'LBL_CONTACT_ID',
218         'comment' => 'If converted, Contact ID resulting from the conversion'
219   ),
220     'contact' => array(
221         'name' => 'contact',
222         'type' => 'link',
223         'link_type' => 'one',
224         'relationship' => 'contact_leads',
225         'source' => 'non-db',
226         'vname' => 'LBL_LEADS',
227         'reportable' => false,
228     ),
229   'account_id' =>
230   array (
231     'name' => 'account_id',
232     'type' => 'id',
233     'reportable'=>false,
234     'vname'=>'LBL_ACCOUNT_ID',
235         'comment' => 'If converted, Account ID resulting from the conversion'
236   ),
237   'opportunity_id' =>
238   array (
239     'name' => 'opportunity_id',
240     'type' => 'id',
241     'reportable'=>false,
242     'vname'=>'LBL_OPPORTUNITY_ID',
243         'comment' => 'If converted, Opportunity ID resulting from the conversion'
244   ),
245   'opportunity' => array (
246     'name' => 'opportunity',
247     'type' => 'link',
248     'link_type' => 'one',
249     'relationship' => 'opportunity_leads',
250     'source'=>'non-db',
251     'vname'=>'LBL_OPPORTUNITIES',
252   ),
253   'opportunity_name' =>
254   array (
255     'name' => 'opportunity_name',
256     'vname' => 'LBL_OPPORTUNITY_NAME',
257     'type' => 'varchar',
258     'len' => '255',
259     'comment' => 'Opportunity name associated with lead'
260   ),
261   'opportunity_amount' =>
262   array (
263     'name' => 'opportunity_amount',
264     'vname' => 'LBL_OPPORTUNITY_AMOUNT',
265     'type' => 'varchar',
266     'group'=>'opportunity_name',
267     'len' => '50',
268     'comment' => 'Amount of the opportunity'
269   ),
270   'campaign_id' =>
271   array (
272     'name' => 'campaign_id',
273     'type' => 'id',
274     'reportable'=>false,
275     'vname'=>'LBL_CAMPAIGN_ID',
276         'comment' => 'Campaign that generated lead'
277   ),
278
279    'campaign_name' =>
280     array (
281       'name' => 'campaign_name',
282       'rname' => 'name',
283       'id_name' => 'campaign_id',
284       'vname' => 'LBL_CAMPAIGN',
285       'type' => 'relate',
286       'link' => 'campaign_leads',
287       'table' => 'campaigns',
288       'isnull' => 'true',
289       'module' => 'Campaigns',
290       'source' => 'non-db',
291     ),
292     'campaign_leads' =>
293     array (
294       'name' => 'campaign_leads',
295       'type' => 'link',
296       'vname' => 'LBL_CAMPAIGN_LEAD',
297       'relationship' => 'campaign_leads',
298       'source' => 'non-db',
299     ),
300     'c_accept_status_fields' =>
301                 array (
302                         'name' => 'c_accept_status_fields',
303                         'rname' => 'id',
304                         'relationship_fields'=>array('id' => 'accept_status_id', 'accept_status' => 'accept_status_name'),
305                         'vname' => 'LBL_LIST_ACCEPT_STATUS',
306                         'type' => 'relate',
307                         'link' => 'calls',
308                         'link_type' => 'relationship_info',
309                         'source' => 'non-db',
310                         'importable' => 'false',
311             'duplicate_merge'=> 'disabled',
312                         'studio' => false,
313                 ),
314         'm_accept_status_fields' =>
315                 array (
316                         'name' => 'm_accept_status_fields',
317                         'rname' => 'id',
318                         'relationship_fields'=>array('id' => 'accept_status_id', 'accept_status' => 'accept_status_name'),
319                         'vname' => 'LBL_LIST_ACCEPT_STATUS',
320                         'type' => 'relate',
321                         'link' => 'meetings',
322                         'link_type' => 'relationship_info',
323                         'source' => 'non-db',
324                         'importable' => 'false',
325                         'hideacl'=>true,
326             'duplicate_merge'=> 'disabled',
327                         'studio' => false,
328                 ),
329         'accept_status_id' =>
330                 array(
331                         'name' => 'accept_status_id',
332                         'type' => 'varchar',
333                         'source' => 'non-db',
334                         'vname' => 'LBL_LIST_ACCEPT_STATUS',
335                         'studio' => array('listview' => false),
336                 ),
337         'accept_status_name' =>
338                 array(
339                         'massupdate' => false,
340                         'name' => 'accept_status_name',
341                         'type' => 'enum',
342                         'source' => 'non-db',
343                         'vname' => 'LBL_LIST_ACCEPT_STATUS',
344                         'options' => 'dom_meeting_accept_status',
345                         'importable' => 'false',
346                 ),
347                 //bug 42902
348                 'email'=> array(
349                         'name' => 'email',
350                         'type' => 'email',
351                         'query_type' => 'default',
352                         'source' => 'non-db',
353                         'operator' => 'subquery',
354                         'subquery' => 'SELECT eabr.bean_id FROM email_addr_bean_rel eabr JOIN email_addresses ea ON (ea.id = eabr.email_address_id) WHERE eabr.deleted=0 AND ea.email_address LIKE',
355                         'db_field' => array(
356                                 'id',
357                         ),
358                         'vname' =>'LBL_ANY_EMAIL',
359                         'studio' => array('visible'=>false, 'searchview'=>true),
360                 ),
361   'webtolead_email1' =>
362   array (
363     'name' => 'webtolead_email1',
364     'vname' => 'LBL_EMAIL_ADDRESS',
365     'type' => 'email',
366     'len' => '100',
367     'source' => 'non-db',
368         'comment' => 'Main email address of lead',
369     'importable' => 'false',
370     'studio' => 'false',
371   ),
372   'webtolead_email2' =>
373   array (
374     'name' => 'webtolead_email2',
375     'vname' => 'LBL_OTHER_EMAIL_ADDRESS',
376     'type' => 'email',
377     'len' => '100',
378     'source' => 'non-db',
379     'comment' => 'Secondary email address of lead',
380     'importable' => 'false',
381     'studio' => 'false',
382   ),
383   'webtolead_email_opt_out' =>
384   array (
385     'name' => 'webtolead_email_opt_out',
386     'vname' => 'LBL_EMAIL_OPT_OUT',
387     'type' => 'bool',
388     'source' => 'non-db',
389         'comment' => 'Indicator signaling if lead elects to opt out of email campaigns',
390     'importable' => 'false',
391     'massupdate' => false,
392         'studio'=>'false',
393   ),
394 'webtolead_invalid_email' =>
395   array (
396     'name' => 'webtolead_invalid_email',
397     'vname' => 'LBL_INVALID_EMAIL',
398     'type' => 'bool',
399     'source' => 'non-db',
400     'comment' => 'Indicator that email address for lead is invalid',
401     'importable' => 'false',
402     'massupdate' => false,
403         'studio'=>'false',
404   ),
405 'birthdate' =>
406         array (
407                 'name' => 'birthdate',
408                 'vname' => 'LBL_BIRTHDATE',
409                 'massupdate' => false,
410                 'type' => 'date',
411                 'comment' => 'The birthdate of the contact'
412         ),
413   
414   'portal_name' =>
415   array (
416     'name' => 'portal_name',
417     'vname' => 'LBL_PORTAL_NAME',
418     'type' => 'varchar',
419     'len' => '255',
420     'group'=>'portal',
421     'comment' => 'Portal user name when lead created via lead portal',
422         //BEGIN SUGARCRM flav!=ent
423         'studio' => 'false',
424         //END SUGARCRM
425   ),
426   'portal_app' =>
427   array (
428     'name' => 'portal_app',
429     'vname' => 'LBL_PORTAL_APP',
430     'type' => 'varchar',
431     'group'=>'portal',
432     'len' => '255',
433     'comment' => 'Portal application that resulted in created of lead',
434         //BEGIN SUGARCRM flav!=ent
435     'studio' => 'false',
436   ),
437    'website' => 
438   array (
439     'name' => 'website',
440     'vname' => 'LBL_WEBSITE',
441     'type' => 'url',
442     'dbType' => 'varchar',
443     'len' => 255,
444     'comment' => 'URL of website for the company',
445   ),
446
447   'tasks' =>
448   array (
449         'name' => 'tasks',
450     'type' => 'link',
451     'relationship' => 'lead_tasks',
452     'source'=>'non-db',
453                 'vname'=>'LBL_TASKS',
454   ),
455   'notes' =>
456   array (
457         'name' => 'notes',
458     'type' => 'link',
459     'relationship' => 'lead_notes',
460     'source'=>'non-db',
461                 'vname'=>'LBL_NOTES',
462   ),
463   'meetings' =>
464   array (
465         'name' => 'meetings',
466     'type' => 'link',
467     'relationship' => 'meetings_leads',
468     'source'=>'non-db',
469                 'vname'=>'LBL_MEETINGS',
470   ),
471   'calls' =>
472   array (
473         'name' => 'calls',
474     'type' => 'link',
475    'relationship' => 'calls_leads',
476     'source'=>'non-db',
477                 'vname'=>'LBL_CALLS',
478   ),
479   'oldmeetings' =>
480   array (
481         'name' => 'oldmeetings',
482     'type' => 'link',
483     'relationship' => 'lead_meetings',
484     'source'=>'non-db',
485                 'vname'=>'LBL_MEETINGS',
486   ),
487   'oldcalls' =>
488   array (
489         'name' => 'oldcalls',
490     'type' => 'link',
491     'relationship' => 'lead_calls',
492     'source'=>'non-db',
493                 'vname'=>'LBL_CALLS',
494   ),
495   'emails' =>
496   array (
497         'name' => 'emails',
498     'type' => 'link',
499     'relationship' => 'emails_leads_rel',
500     'source'=>'non-db',
501     'unified_search'=>true,
502         'vname'=>'LBL_EMAILS',
503   ),
504         'email_addresses' =>
505         array (
506                 'name' => 'email_addresses',
507         'type' => 'link',
508                 'relationship' => 'leads_email_addresses',
509         'source' => 'non-db',
510                 'vname' => 'LBL_EMAIL_ADDRESSES',
511                 'reportable'=>false,
512             'rel_fields' => array('primary_address' => array('type'=>'bool')),
513         ),
514         'email_addresses_primary' =>
515         array (
516                 'name' => 'email_addresses_primary',
517         'type' => 'link',
518                 'relationship' => 'leads_email_addresses_primary',
519         'source' => 'non-db',
520                 'vname' => 'LBL_EMAIL_ADDRESS_PRIMARY',
521                 'duplicate_merge'=> 'disabled',
522         ),
523         'campaigns' =>
524                 array (
525                         'name' => 'campaigns',
526                 'type' => 'link',
527                 'relationship' => 'lead_campaign_log',
528                 'module'=>'CampaignLog',
529                 'bean_name'=>'CampaignLog',
530                 'source'=>'non-db',
531                         'vname'=>'LBL_CAMPAIGNLOG',
532                 ),
533       'prospect_lists' =>
534       array (
535         'name' => 'prospect_lists',
536         'type' => 'link',
537         'relationship' => 'prospect_list_leads',
538         'module'=>'ProspectLists',
539         'source'=>'non-db',
540         'vname'=>'LBL_PROSPECT_LIST',
541       ),
542
543 )
544                                                       , 'indices' => array (
545        array('name' =>'idx_lead_acct_name_first', 'type'=>'index', 'fields'=>array('account_name','deleted')),
546        array('name' =>'idx_lead_last_first', 'type'=>'index', 'fields'=>array('last_name','first_name','deleted')),
547        array('name' =>'idx_lead_del_stat', 'type'=>'index', 'fields'=>array('last_name','status','deleted','first_name')),
548        array('name' =>'idx_lead_opp_del', 'type'=>'index', 'fields'=>array('opportunity_id','deleted',)),
549        array('name' =>'idx_leads_acct_del', 'type'=>'index', 'fields'=>array('account_id','deleted',)),
550        array('name' => 'idx_del_user', 'type' => 'index', 'fields'=> array('deleted', 'assigned_user_id')),
551         array('name' =>'idx_lead_assigned', 'type'=>'index', 'fields'=>array('assigned_user_id')),
552         array('name' =>'idx_lead_contact', 'type'=>'index', 'fields'=>array('contact_id')),
553         array('name' =>'idx_reports_to', 'type'=>'index', 'fields'=>array('reports_to_id')),
554         array('name' =>'idx_lead_phone_work', 'type'=>'index', 'fields'=>array('phone_work')),
555        array('name' =>'idx_leads_id_del', 'type'=>'index', 'fields'=>array('id','deleted',)),
556
557                                              )
558 , 'relationships' => array (
559         'lead_direct_reports' => array('lhs_module'=> 'Leads', 'lhs_table'=> 'leads', 'lhs_key' => 'id',
560                                                           'rhs_module'=> 'Leads', 'rhs_table'=> 'leads', 'rhs_key' => 'reports_to_id',
561                                                           'relationship_type'=>'one-to-many'),
562         'lead_tasks' => array('lhs_module'=> 'Leads', 'lhs_table'=> 'leads', 'lhs_key' => 'id',
563                                                           'rhs_module'=> 'Tasks', 'rhs_table'=> 'tasks', 'rhs_key' => 'parent_id',
564                                                           'relationship_type'=>'one-to-many', 'relationship_role_column'=>'parent_type',
565                                                           'relationship_role_column_value'=>'Leads')
566         ,'lead_notes' => array('lhs_module'=> 'Leads', 'lhs_table'=> 'leads', 'lhs_key' => 'id',
567                                                           'rhs_module'=> 'Notes', 'rhs_table'=> 'notes', 'rhs_key' => 'parent_id',
568                                                           'relationship_type'=>'one-to-many', 'relationship_role_column'=>'parent_type',
569                                                           'relationship_role_column_value'=>'Leads')
570
571         ,'lead_meetings' => array('lhs_module'=> 'Leads', 'lhs_table'=> 'leads', 'lhs_key' => 'id',
572                                                           'rhs_module'=> 'Meetings', 'rhs_table'=> 'meetings', 'rhs_key' => 'parent_id',
573                                                           'relationship_type'=>'one-to-many', 'relationship_role_column'=>'parent_type',
574                                                           'relationship_role_column_value'=>'Leads')
575
576         ,'lead_calls' => array('lhs_module'=> 'Leads', 'lhs_table'=> 'leads', 'lhs_key' => 'id',
577                                                           'rhs_module'=> 'Calls', 'rhs_table'=> 'calls', 'rhs_key' => 'parent_id',
578                                                           'relationship_type'=>'one-to-many', 'relationship_role_column'=>'parent_type',
579                                                           'relationship_role_column_value'=>'Leads')
580
581         ,'lead_emails' => array('lhs_module'=> 'Leads', 'lhs_table'=> 'leads', 'lhs_key' => 'id',
582                                                           'rhs_module'=> 'Emails', 'rhs_table'=> 'emails', 'rhs_key' => 'parent_id',
583                                                           'relationship_type'=>'one-to-many', 'relationship_role_column'=>'parent_type',
584                                                           'relationship_role_column_value'=>'Leads'),
585         'lead_campaign_log' => array(
586                                                                         'lhs_module'            =>      'Leads',
587                                                                         'lhs_table'                     =>      'leads',
588                                                                         'lhs_key'                       =>      'id',
589                                                                         'rhs_module'            =>      'CampaignLog',
590                                                                         'rhs_table'                     =>      'campaign_log',
591                                                                         'rhs_key'                       =>      'target_id',
592                                                                         'relationship_type'     =>'one-to-many'
593                                                                 )
594
595         )
596         //This enables optimistic locking for Saves From EditView
597         ,'optimistic_locking'=>true,
598 );
599
600 VardefManager::createVardef('Leads','Lead', array('default', 'assignable',
601 'person'));
602
603
604 ?>