]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - modules/Leads/views/view.convertlead.php
Release 6.4.1
[Github/sugarcrm.git] / modules / Leads / views / view.convertlead.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 require_once("include/EditView/EditView2.php");
39 require_once("include/upload_file.php");
40
41 class ViewConvertLead extends SugarView
42 {
43     protected $fileName = "modules/Leads/metadata/convertdefs.php";
44     protected $new_contact = false;
45
46     public function __construct(
47         $bean = null,
48         $view_object_map = array()
49         )
50     {
51         parent::SugarView($bean, $view_object_map);
52         $this->medataDataFile = $this->fileName;
53         if (file_exists("custom/$this->fileName"))
54         {
55             $this->medataDataFile = "custom/$this->fileName";
56         }
57     }
58
59     public function preDisplay()
60     {
61         if (!$this->bean->ACLAccess('edit')) {
62             ACLController::displayNoAccess();
63             sugar_die('');
64         }
65     }
66
67     /**
68          * @see SugarView::display()
69          */
70         public function display()
71     {
72         if (!empty($_REQUEST['handle']) && $_REQUEST['handle'] == 'save')
73         {
74                 return $this->handleSave();
75         }
76
77         global $beanList;
78
79         // get the EditView defs to check if opportunity_name exists, for a check below for populating data
80         $opportunityNameInLayout = false;
81         $editviewFile = 'modules/Leads/metadata/editviewdefs.php';
82         $this->medataDataFile = $editviewFile;
83         if (file_exists("custom/{$editviewFile}"))
84         {
85             $this->medataDataFile = "custom/{$editviewFile}";
86         }
87         include($this->medataDataFile);
88         foreach($viewdefs['Leads']['EditView']['panels'] as $panel_index => $section){
89             foreach($section as $row_array){
90                 foreach($row_array as $cell){
91                         if(isset($cell['name']) && $cell['name'] == 'opportunity_name'){
92                             $opportunityNameInLayout = true;
93                         }
94                 }
95             }
96         }
97
98         $this->medataDataFile = $this->fileName;
99         if (file_exists("custom/$this->fileName"))
100         {
101             $this->medataDataFile = "custom/$this->fileName";
102         }
103         $this->loadDefs();
104         $this->getRecord();
105         $this->checkForDuplicates($this->focus);
106         $smarty = new Sugar_Smarty();
107         $ev = new EditView();
108         $ev->ss = $smarty;
109         $ev->view = "ConvertLead";
110         echo $this->getModuleTitle();
111
112         require_once("include/QuickSearchDefaults.php");
113         $qsd = new QuickSearchDefaults();
114         $qsd->setFormName("ConvertLead");
115
116         $this->contact = new Contact();
117         $smarty->assign("contact_def", $this->contact->field_defs);
118         $smarty->assign("form_name", "ConvertLead");
119         $smarty->assign("form_id", "ConvertLead");
120         $smarty->assign("module", "Leads");
121         $smarty->assign("view", "convertlead");
122         $smarty->assign("bean", $this->focus);
123                 $smarty->assign("record_id", $this->focus->id);
124         global $mod_strings;
125         $smarty->assign('MOD', $mod_strings);
126         $smarty->display("modules/Leads/tpls/ConvertLeadHeader.tpl");
127
128         echo "<div class='edit view' style='width:auto;'>";
129
130         global $sugar_config, $app_list_strings, $app_strings;
131         $smarty->assign('lead_conv_activity_opt', $sugar_config['lead_conv_activity_opt']);
132         
133         //Switch up list depending on copy or move
134         if($sugar_config['lead_conv_activity_opt'] == 'move')
135         {
136                 $smarty->assign('convertModuleListOptions', get_select_options_with_id(array('None'=>$app_strings['LBL_NONE'], 'Contacts' => $app_list_strings["moduleListSingular"]['Contacts']), ''));        
137         }
138         else if($sugar_config['lead_conv_activity_opt'] == 'copy')
139         {
140                 $smarty->assign('convertModuleListOptions', get_select_options_with_id(array('Contacts' => $app_list_strings["moduleListSingular"]['Contacts']), ''));
141         }
142         
143         
144
145         foreach($this->defs as $module => $vdef)
146         {
147             if(!isset($beanList[$module]))
148             {
149                 continue;
150             }
151             $bean = $beanList[$module];
152             $focus = new $bean();
153             $focus->fill_in_additional_detail_fields();
154             foreach($focus->field_defs as $field => $def)
155             {
156                 if(isset($vdef[$ev->view]['copyData']) && $vdef[$ev->view]['copyData'])
157                 {
158                         if ($module == "Accounts" && $field == 'name')
159                         {
160                             $focus->name = $this->focus->account_name;
161                         }
162                         else if ($module == "Opportunities" && $field == 'amount')
163                         {
164                             $focus->amount = unformat_number($this->focus->opportunity_amount);
165                         } 
166                         else if ($module == "Opportunities" && $field == 'name') {
167                                 if ($opportunityNameInLayout && !empty($this->focus->opportunity_name)){
168                            $focus->name = $this->focus->opportunity_name;
169                                 }
170                         }
171                         else if ($field == "id")
172                     {
173                                                 //If it is not a contact, don't copy the ID from the lead
174                         if ($module == "Contacts") {
175                            $focus->$field = $this->focus->$field;
176                         }
177                     } else if (is_a($focus, "Company") && $field == 'phone_office')
178                         {
179                                 //Special case where company and person have the same field with a different name
180                                 $focus->phone_office = $this->focus->phone_work;
181                         }
182                                         else if (strpos($field, "billing_address") !== false && $focus->field_defs[$field]["type"] == "varchar") /* Bug 42219 fix */         
183                                         {
184                                                 $tmp_field = str_replace("billing_", "primary_", $field);
185                                                 $focus->field_defs[$field]["type"] = "text";
186                         if (isset($this->focus->$tmp_field)) {
187                                                     $focus->$field = $this->focus->$tmp_field;
188                         }
189                                          }
190
191                                         else if (strpos($field, "shipping_address") !== false && $focus->field_defs[$field]["type"] == "varchar") /* Bug 42219 fix */
192                                         {
193                                                 $tmp_field = str_replace("shipping_", "primary_", $field);
194                                                 if (isset($this->focus->$tmp_field)) {
195                             $focus->$field = $this->focus->$tmp_field;
196                         }
197                                                 $focus->field_defs[$field]["type"] = "text";
198                                         }                                       
199                     else if (isset($this->focus->$field))
200                     {
201                         $focus->$field = $this->focus->$field;
202                     }
203                 }
204             }
205
206             //Copy over email data
207             $ev->setup($module, $focus, $this->medataDataFile, "modules/Leads/tpls/ConvertLead.tpl", false);
208             $ev->process();
209             echo($ev->display(false));
210             echo($this->getValidationJS($module, $focus, $vdef[$ev->view]));
211         }
212         echo "</div>";
213         echo ($qsd->getQSScriptsJSONAlreadyDefined());
214         $smarty->display("modules/Leads/tpls/ConvertLeadFooter.tpl");
215     }
216
217     protected function getRecord()
218     {
219         $this->focus = new Lead();
220         if (isset($_REQUEST['record']))
221         {
222                 $this->focus->retrieve($_REQUEST['record']);
223         }
224     }
225
226     protected function loadDefs()
227     {
228         $viewdefs = array();
229         include($this->medataDataFile);
230         $this->defs = $viewdefs;
231     }
232
233     /**
234      * Returns the javascript to enable/disable validation of each module's sub-form
235      * //TODO: This should probably be on the smarty template
236      * @param $module String the target module name.
237      * @param $focus SugarBean instance of the target module.
238      * @param $focus EditView def for the module.
239      * @return String, javascript to echo to page.
240      */
241     protected function getValidationJS(
242         $module,
243         $focus,
244         $viewdef
245         )
246     {
247         $validateSelect = isset($viewdef['required']) && $viewdef['required'] && !empty($viewdef['select']);
248         $jsOut  = "
249         <script type='text/javascript'>
250             if (!SUGAR.convert)  SUGAR.convert = {requiredFields: {}};
251             SUGAR.convert.toggle$module = function(){
252                 clear_all_errors();
253                 inputsWithErrors = [];
254                 if(!SUGAR.convert.{$module}Enabled)
255                 {
256                     for(var i in SUGAR.convert.requiredFields.$module)
257                     {
258                         addToValidate('ConvertLead', '$module' + i, 'varchar', true, SUGAR.convert.requiredFields.{$module}[i]);
259                     }
260                     ";
261         if ($validateSelect) {
262                 $jsOut  .= "
263                     removeFromValidate('ConvertLead', '{$viewdef['select']}');";
264         }
265
266         $jsOut .= "
267                     SUGAR.convert.{$module}Enabled = true;
268                 } else {
269                     for(var i in SUGAR.convert.requiredFields.$module)
270                     {
271                         removeFromValidate('ConvertLead', '$module' + i);
272                     }";
273         if ($validateSelect) {
274             $jsOut  .= "
275                 addToValidate('ConvertLead', '{$viewdef['select']}', 'varchar', true, '"
276             . translate($this->contact->field_defs[$viewdef['select']]['vname']) . "');";
277         }
278         $jsOut .= "
279                     SUGAR.convert.{$module}Enabled = false;
280                 }
281                 YAHOO.util.Dom.get('convert_create_{$module}').value = SUGAR.convert.{$module}Enabled;
282             };\n";
283
284         if (isset($viewdef['required']) && $viewdef['required'])
285         {
286             if (!empty($viewdef['select']) && (empty($viewdef['default_action']) || $viewdef['default_action'] != 'create'))
287             {
288                 $jsOut .= "
289             SUGAR.convert.{$module}Enabled = true;";
290             }
291             $jsOut .= "
292             YAHOO.util.Event.onDOMReady(SUGAR.convert.toggle$module);";
293         } else if (isset($viewdef['default_action'])  && $viewdef['default_action'] == "create")
294         {
295              $jsOut .= "\n            SUGAR.convert.{$module}Enabled = true;";
296         }
297         $jsOut .= "
298             YAHOO.util.Event.addListener('new$module', 'click', SUGAR.convert.toggle$module);
299             SUGAR.convert.requiredFields.$module = {};";
300         foreach($focus->field_defs as $field => $def)
301         {
302             if (isset($def['required']) && $def['required'])
303             {
304                 $jsOut .= "
305             SUGAR.convert.requiredFields.$module.$field = '". translate($def['vname'], $module) . "';\n";
306             }
307         }
308
309         $jsOut .= "
310         </script>";
311
312         return $jsOut;
313     }
314
315     /**
316      * Saves a new Contact as well as any related items passed in.
317      *
318      * @return null
319      */
320     protected function handleSave()
321     {
322         require_once('modules/Campaigns/utils.php');
323         require_once("include/formbase.php");
324         $lead = false;
325         if (!empty($_REQUEST['record']))
326         {
327             $lead = new Lead();
328             $lead->retrieve($_REQUEST['record']);
329         }
330
331         global $beanList;
332         $this->loadDefs();
333         $beans = array();
334         $selectedBeans = array();
335         $selects = array();
336         //Make sure the contact object is availible for relationships.
337         $beans['Contacts'] = new Contact();
338         $beans['Contacts']->id = create_guid();
339         $beans['Contacts']->new_with_id = true;
340
341         // Bug 39287 - Check for Duplicates on selected modules before save
342         if (!empty($_REQUEST['selectedContact']))
343         {
344             $beans['Contacts']->retrieve($_REQUEST['selectedContact']);
345             if (!empty($beans['Contacts']->id))
346             {
347                 $beans['Contacts']->new_with_id = false;
348                 unset($_REQUEST["convert_create_Contacts"]);
349                 unset($_POST["convert_create_Contacts"]);
350             }
351         }
352         elseif (!empty($_REQUEST["convert_create_Contacts"]) && $_REQUEST["convert_create_Contacts"] != "false" && !isset($_POST['ContinueContact'])) 
353         {
354             require_once('modules/Contacts/ContactFormBase.php');
355             $contactForm = new ContactFormBase();
356             $duplicateContacts = $contactForm->checkForDuplicates('Contacts');
357
358             if (isset($duplicateContacts))
359             {
360                 echo $contactForm->buildTableForm($duplicateContacts,  'Contacts');
361                 return;
362             }
363             $this->new_contact = true;
364         }
365         if (!empty($_REQUEST['selectedAccount']))
366         {
367             $_REQUEST['account_id'] = $_REQUEST['selectedAccount'];
368             unset($_REQUEST["convert_create_Accounts"]);
369             unset($_POST["convert_create_Accounts"]);
370         }
371         elseif (!empty($_REQUEST["convert_create_Accounts"]) && $_REQUEST["convert_create_Accounts"] != "false" && empty($_POST['ContinueAccount']))
372         {
373             require_once('modules/Accounts/AccountFormBase.php');
374             $accountForm = new AccountFormBase();
375             $duplicateAccounts = $accountForm->checkForDuplicates('Accounts');
376             if (isset($duplicateAccounts))
377             {
378                 echo $accountForm->buildTableForm($duplicateAccounts);
379                 return;
380             }
381         }
382
383         foreach ($this->defs as $module => $vdef)
384         {
385             //Create a new record if "create" was selected
386                 if (!empty($_REQUEST["convert_create_$module"]) && $_REQUEST["convert_create_$module"] != "false")
387             {
388                 //Save the new record
389                 $bean = $beanList[$module];
390                     if (empty($beans[$module]))
391                         $beans[$module] = new $bean();
392
393                 $this->populateNewBean($module, $beans[$module], $beans['Contacts'], $lead);
394
395             }
396             //If an existing bean was selected, relate it to the contact
397             else if (!empty($vdef['ConvertLead']['select'])) 
398             {
399                 //Save the new record
400                 $select = $vdef['ConvertLead']['select'];
401                 $fieldDef = $beans['Contacts']->field_defs[$select];
402                 if (!empty($fieldDef['id_name']) && !empty($_REQUEST[$fieldDef['id_name']]))
403                 {
404                     $beans['Contacts']->$fieldDef['id_name'] = $_REQUEST[$fieldDef['id_name']];
405                     $selects[$module] = $_REQUEST[$fieldDef['id_name']];
406                     if (!empty($_REQUEST[$select]))
407                     {
408                         $beans['Contacts']->$select = $_REQUEST[$select];
409                     }
410                     // Bug 39268 - Add the existing beans to a list of beans we'll potentially add the lead's activities to
411                     $bean = loadBean($module);
412                     $bean->retrieve($_REQUEST[$fieldDef['id_name']]);
413                     $selectedBeans[$module] = $bean;
414                 }
415             }
416         }
417
418         $this->handleActivities($lead, $beans);
419         // Bug 39268 - Add the lead's activities to the selected beans
420         $this->handleActivities($lead, $selectedBeans);
421
422         //link selected account to lead if it exists
423         if (!empty($selectedBeans['Accounts']))
424         {
425             $lead->account_id = $selectedBeans['Accounts']->id;
426         }
427
428         //Handle non-contacts relationships
429         foreach ($beans as $bean)
430         {
431             if (!empty($lead))
432             {
433                 if (empty($bean->assigned_user_id))
434                 {
435                     $bean->assigned_user_id = $lead->assigned_user_id;
436                 }
437                 $leadsRel = $this->findRelationship($bean, $lead);
438                 if (!empty($leadsRel))
439                 {
440                     $bean->load_relationship($leadsRel);
441                     $relObject = $bean->$leadsRel->getRelationshipObject();
442                     if ($relObject->relationship_type == "one-to-many" && $bean->$leadsRel->_get_bean_position())
443                     {
444                         $id_field = $relObject->rhs_key;
445                         $lead->$id_field = $bean->id;
446                     }
447                     else 
448                     {
449                         $bean->$leadsRel->add($lead->id);
450                     }
451                 }
452             }
453             //Special case code for opportunities->Accounts
454             if ($bean->object_name == "Opportunity" && empty($bean->account_id))
455             {
456                 if (isset($beans['Accounts']))
457                 {
458                     $bean->account_id = $beans['Accounts']->id;
459                     $bean->account_name = $beans['Accounts']->name;
460                 }
461                 else if (!empty($selects['Accounts']))
462                 {
463                     $bean->account_id = $selects['Accounts'];
464                 }
465             }
466
467             //create meetings-users relationship
468             if ($bean->object_name == "Meeting")
469             {
470                 $bean = $this->setMeetingsUsersRelationship($bean);
471             }
472             $this->copyAddressFields($bean, $beans['Contacts']);
473
474             $bean->save();
475             //if campaign id exists then there should be an entry in campaign_log table for the newly created contact: bug 44522        
476             if (isset($lead->campaign_id) && $lead->campaign_id != null && $bean->object_name == "Contact")
477             {
478                 campaign_log_lead_or_contact_entry($lead->campaign_id, $lead, $beans['Contacts'], 'contact');
479             }
480         }
481         if (!empty($lead))
482         {       //Mark the original Lead converted
483             $lead->status = "Converted";
484             $lead->converted = '1';
485             $lead->in_workflow = true;
486             $lead->save();
487         }
488
489         $this->displaySaveResults($beans);
490     }
491
492     public function setMeetingsUsersRelationship($bean)
493     {
494         global $current_user;
495         $meetingsRel = $this->findRelationshipByName($bean, $this->defs['Meetings']['ConvertLead']['relationship']);
496         if (!empty($meetingsRel))
497         {
498             $bean->load_relationship($meetingsRel);
499             $bean->$meetingsRel->add($current_user->id);
500             return $bean;
501         }
502         else
503         {
504             return false;
505         }
506     }
507     protected function displaySaveResults(
508         $beans
509         )
510     {
511         global $beanList;
512         echo "<div><ul>";
513         foreach($beans as $bean)
514         {
515             $beanName = $bean->object_name;
516             if ( $beanName == 'Contact' && !$this->new_contact ) {
517                 echo "<li>" . translate("LBL_EXISTING_CONTACT") . " -
518                     <a href='index.php?module={$bean->module_dir}&action=DetailView&record={$bean->id}'>
519                        {$bean->get_summary_text()}
520                     </a></li>";
521             }
522             else {
523                 global $app_list_strings;
524                 if(!empty($app_list_strings['moduleListSingular'][$bean->module_dir])) {
525                     $module_name = $app_list_strings['moduleListSingular'][$bean->module_dir];
526                 } else {
527                     $module_name = translate('LBL_MODULE_NAME', $bean->module_dir);
528                 }
529                 if(empty($module_name)) {
530                     $module_name = translate($beanName);
531                 }
532                 echo "<li>" . translate("LBL_CREATED_NEW") . ' ' . $module_name . " -
533                     <a href='index.php?module={$bean->module_dir}&action=DetailView&record={$bean->id}'>
534                        {$bean->get_summary_text()}
535                     </a></li>";
536             }
537         }
538
539         echo "</ul></div>";
540     }
541
542     protected function handleActivities(
543         $lead,
544         $beans
545         )
546     {
547         global $app_list_strings;
548         global $sugar_config;
549         global $app_strings;
550         $parent_types = $app_list_strings['record_type_display'];
551
552         $activities = $this->getActivitiesFromLead($lead);
553
554         foreach($beans as $module => $bean)
555         {
556                 if (isset($parent_types[$module]))
557                 {
558                 if (empty($bean->id))
559                 {
560                     $bean->id = create_guid();
561                             $bean->new_with_id = true;
562                 }
563                 if( isset($_POST['lead_conv_ac_op_sel']) && $_POST['lead_conv_ac_op_sel'] != $app_strings['LBL_NONE'])
564                 {
565                         foreach($activities as $activity)
566                                 {
567                                     if (!isset($sugar_config['lead_conv_activity_opt']) || $sugar_config['lead_conv_activity_opt'] == 'copy') {
568                                         if (isset($_POST['lead_conv_ac_op_sel'])) {
569                                             //if the copy to module(s) are defined, copy only to those module(s)
570                                             if (is_array($_POST['lead_conv_ac_op_sel'])) {
571                                                 foreach ($_POST['lead_conv_ac_op_sel'] as $mod) {
572                                                     if ($mod == $module) {
573                                                         $this->copyActivityAndRelateToBean($activity, $bean);
574                                                         break;
575                                                     }
576                                                 }
577                                             }
578                                         }
579                                     }
580                                     else if ($sugar_config['lead_conv_activity_opt'] == 'move') {
581                                         // if to move activities, should be only one module selected
582                                         if ($_POST['lead_conv_ac_op_sel'] == $module) {
583                                             $this->moveActivity($activity, $bean);
584                                         }
585                                     }
586                                 }
587                 }
588                 }
589         }
590     }
591
592     /**
593      * Change the parent id and parent type of an activity
594      * @param $activity Activity to be modified
595      * @param $bean New parent bean of the activity
596      */
597     protected function moveActivity($activity, $bean) {
598         global $beanList;
599
600         $lead = null;
601         if (!empty($_REQUEST['record']))
602         {
603             $lead = new Lead();
604             $lead->retrieve($_REQUEST['record']);
605         }
606
607         // delete the old relationship to the old parent (lead)
608         if ($rel = $this->findRelationship($activity, $lead)) {
609             $activity->load_relationship ($rel) ;
610
611             if ($activity->parent_id && $activity->id) {
612                 $activity->$rel->delete($activity->id, $activity->parent_id);
613             }
614         }
615
616         // add the new relationship to the new parent (contact, account, etc)
617         if ($rel = $this->findRelationship($activity, $bean)) {
618             $activity->load_relationship ($rel) ;
619
620             $relObj = $activity->$rel->getRelationshipObject();
621             if ( $relObj->relationship_type=='one-to-one' || $relObj->relationship_type == 'one-to-many' )
622             {
623                 $key = $relObj->rhs_key;
624                 $activity->$key = $bean->id;
625             }
626             $activity->$rel->add($bean);
627         }
628
629         // set the new parent id and type
630         $activity->parent_id = $bean->id;
631         $activity->parent_type = $bean->module_dir;
632
633         $activity->save();
634     }
635
636     /**
637      * Gets the list of activities related to the lead
638      * @param Lead $lead Lead to get activities from
639      * @return Array of Activity SugarBeans .
640      */
641         protected function getActivitiesFromLead(
642             $lead
643             )
644         {
645                 if (!$lead) return;
646
647                 global $beanList, $db;
648
649                 $activitesList = array("Calls", "Tasks", "Meetings", "Emails", "Notes");
650                 $activities = array();
651
652                 foreach($activitesList as $module)
653                 {
654                         $beanName = $beanList[$module];
655                         $activity = new $beanName();
656                         $query = "SELECT id FROM {$activity->table_name} WHERE parent_id = '{$lead->id}' AND parent_type = 'Leads'";
657                         $result = $db->query($query,true);
658             while($row = $db->fetchByAssoc($result))
659             {
660                 $activity = new $beanName();
661                                 $activity->retrieve($row['id']);
662                                 $activity->fixUpFormatting();
663                                 $activities[] = $activity;
664             }
665                 }
666
667                 return $activities;
668         }
669
670         protected function copyActivityAndRelateToBean(
671             $activity,
672             $bean
673             )
674         {
675                 global $beanList;
676
677                 $newActivity = clone $activity;
678                 $newActivity->id = create_guid();
679                 $newActivity->new_with_id = true;
680
681                 //Special case to prevent duplicated tasks from appearing under Contacts multiple times
682         if ($newActivity->module_dir == "Tasks" && $bean->module_dir != "Contacts")
683         {
684                 $newActivity->contact_id = $activity->contact_name = "";
685         }
686
687                 if ($rel = $this->findRelationship($newActivity, $bean))
688         {
689             $newActivity->load_relationship ($rel) ;
690             $relObj = $newActivity->$rel->getRelationshipObject();
691             if ( $relObj->relationship_type=='one-to-one' || $relObj->relationship_type == 'one-to-many' )
692             {
693                 $key = $relObj->rhs_key;
694                 $newActivity->$key = $bean->id;
695             }
696             $newActivity->parent_id = $bean->id;
697                 $newActivity->parent_type = $bean->module_dir;
698                 $newActivity->update_date_modified = false; //bug 41747 
699                 $newActivity->save();
700             $newActivity->$rel->add($bean);
701             if ($newActivity->module_dir == "Notes" && $newActivity->filename) {
702                         UploadFile::duplicate_file($activity->id, $newActivity->id,  $newActivity->filename);
703                 }
704          }
705         }
706
707     /**
708      * Populates the passed in Bean fron the contact and the $_REQUEST
709      * @param String $module Module of new bean
710      * @param SugarBean $bean SugarBean to be populated.
711      * @param Contact $contact Contact to relate the bean to.
712      */
713         protected function populateNewBean(
714             $module,
715             $bean,
716             $contact,
717             $lead
718             )
719         {
720                 populateFromPost($module, $bean, true);
721
722                 //Copy data from the contact to new bean
723                 foreach($bean->field_defs as $field => $def)
724                 {
725                         if(!isset($_REQUEST[$module . $field]) && isset($lead->$field) && $field != 'id')
726                         {
727                                 $bean->$field = $lead->$field;
728                                 if($field == 'date_entered') $bean->$field = gmdate($GLOBALS['timedate']->get_db_date_time_format()); //bug 41030
729                         }
730                 }
731                 //Try to link to the new contact
732                 $contactRel = "";
733                 if (!empty($vdef['ConvertLead']['select']))
734                 {
735                         $select = $vdef['ConvertLead']['select'];
736                         $fieldDef = $contact->field_defs[$select];
737                         if (!empty($fieldDef['id_name']))
738                         {
739                                 $bean->id = create_guid();
740                                 $bean->new_with_id = true;
741                                 $contact->$fieldDef['id_name'] = $bean->id ;
742                                 if ($fieldDef['id_name'] != $select) {
743                                         $rname = isset($fieldDef['rname']) ? $fieldDef['rname'] : "";
744                                         if (!empty($rname) && isset($bean->$rname))
745                                                 $contact->$select = $bean->$rname;
746                                         else
747                                                 $contact->$select = $bean->name;
748                                 }
749                         }
750                 } else if ($module != "Contacts"){
751                         $contactRel = $this->findRelationship($contact, $bean);
752                         if (!empty($contactRel))
753                         {
754                                 $bean->id = create_guid();
755                                 $bean->new_with_id = true;
756                                 $contact->load_relationship ($contactRel) ;
757                                 $relObject = $contact->$contactRel->getRelationshipObject();
758                                 if ($relObject->relationship_type == "one-to-many" && $contact->$contactRel->_get_bean_position())
759                                 {
760                                         $id_field = $relObject->rhs_key;
761                                         $bean->$id_field = $contact->id;
762                                 } else {
763                                         $contact->$contactRel->add($bean);
764                                 }
765                                 //Set the parent of activites to the new Contact
766                                 if (isset($bean->field_defs['parent_id']) && isset($bean->field_defs['parent_type']))
767                                 {
768                                         $bean->parent_id = $contact->id;
769                                         $bean->parent_type = "Contacts";
770                                 }
771                         }
772                 }
773         }
774
775         protected function copyAddressFields($bean, $contact)
776         {
777         //Copy over address info from the contact to any beans with address not set
778                 foreach($bean->field_defs as $field => $def)
779                         {
780                                 if(!isset($_REQUEST[$bean->module_dir . $field]) && strpos($field, "_address_") !== false)
781                                 {
782                                         $set = "primary";
783                                         if (strpos($field, "alt_") !== false || strpos($field, "shipping_") !== false)
784                                                 $set = "alt";
785                                         $type = "";
786
787                                         if(strpos($field, "_address_street_2") !== false)
788                                                 $type = "_address_street_2";
789                                         else if(strpos($field, "_address_street_3") !== false)
790                                                 $type = "_address_street_3";
791                                         else if(strpos($field, "_address_street_4") !== false)
792                                                 $type = "";
793                                         else if(strpos($field, "_address_street") !== false)
794                                                 $type = "_address_street";
795                                         else if(strpos($field, "_address_city") !== false)
796                                                 $type = "_address_city";
797                                         else if(strpos($field, "_address_state") !== false)
798                                                 $type = "_address_state";
799                                         else if(strpos($field, "_address_postalcode") !== false)
800                                                 $type = "_address_postalcode";
801                                         else if(strpos($field, "_address_country") !== false)
802                                                 $type = "_address_country";
803
804                                                 $var = $set.$type;
805                                         if (isset($contact->$var))
806                                                 $bean->$field = $contact->$var;
807                                 }
808                         }
809         }
810
811
812     protected function findRelationship(
813         $from,
814         $to
815         )
816     {
817         global $dictionary;
818         require_once("modules/TableDictionary.php");
819         foreach ($from->field_defs as $field=>$def)
820         {
821             if (isset($def['type']) && $def['type'] == "link" && isset($def['relationship'])) 
822                         {
823                 $rel_name = $def['relationship'];
824                 $rel_def = "";
825                 if (isset($dictionary[$from->object_name]['relationships']) && isset($dictionary[$from->object_name]['relationships'][$rel_name]))
826                 {
827                     $rel_def = $dictionary[$from->object_name]['relationships'][$rel_name];
828                 }
829                 else if (isset($dictionary[$to->object_name]['relationships']) && isset($dictionary[$to->object_name]['relationships'][$rel_name]))
830                 {
831                     $rel_def = $dictionary[$to->object_name]['relationships'][$rel_name];
832                 }
833                 else if (isset($dictionary[$rel_name]) && isset($dictionary[$rel_name]['relationships'])
834                         && isset($dictionary[$rel_name]['relationships'][$rel_name]))
835                 {
836                         $rel_def = $dictionary[$rel_name]['relationships'][$rel_name];
837                 }
838                 if (!empty($rel_def)) {
839                     if ($rel_def['lhs_module'] == $from->module_dir && $rel_def['rhs_module'] == $to->module_dir )
840                     {
841                         return $field;
842                     }
843                     else if ($rel_def['rhs_module'] == $from->module_dir && $rel_def['lhs_module'] == $to->module_dir )
844                     {
845                         return $field;
846                     }
847                 }
848             }
849         }
850         return false;
851     }
852
853     protected function findRelationshipByName($from, $rel_name)
854     {
855         global $dictionary;
856         require_once("modules/TableDictionary.php");
857         foreach ($from->field_defs as $field => $def)
858         {
859             if (isset($def['relationship']) && $def['relationship'] == $rel_name) 
860             {
861                 return $field;
862             }
863         }
864         return false;
865     }
866         /**
867          * @see SugarView::_getModuleTitleParams()
868          */
869         protected function _getModuleTitleParams($browserTitle = false)
870         {
871             global $mod_strings;
872             $params = parent::_getModuleTitleParams($browserTitle);
873             $params[] = "<a href='index.php?module=Leads&action=DetailView&record={$this->bean->id}'>{$this->bean->name}</a>";
874             $params[] = $mod_strings['LBL_CONVERTLEAD'];
875         return $params;
876     }
877
878
879     protected function checkForDuplicates(
880         $lead
881         )
882     {
883         if ($lead->status == "Converted")
884         {
885                 echo ("<span class='error'>" . translate('LBL_CONVERTLEAD_WARNING'));
886                 $dupes = array();
887                 $q = "SELECT id, first_name, last_name FROM contacts WHERE first_name LIKE '{$lead->first_name}' AND last_name LIKE '{$lead->last_name}'";
888                 $result = $lead->db->query($q);
889                 while($row = $lead->db->fetchByAssoc($result)) {
890                         $contact = new Contact();
891                         $contact->retrieve($row['id']);
892                         $dupes[$row['id']] = $contact->name;
893                 }
894                 if (!empty($dupes))
895                 {
896                         foreach($dupes as $id => $name)
897                         {
898                                 echo (translate('LBL_CONVERTLEAD_WARNING_INTO_RECORD') . "<a href='index.php?module=Contacts&action=DetailView&record=$id'>$name</a>");
899                                 break;
900                         }
901                 }
902                 echo "</span>";
903         }
904         return false;
905     }
906 }