You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							188 lines
						
					
					
						
							6.1 KiB
						
					
					
				
			
		
		
		
			
			
			
				
					
				
				
					
				
			
		
		
	
	
							188 lines
						
					
					
						
							6.1 KiB
						
					
					
				
								<?php
							 | 
						|
								/*********************************************************************************
							 | 
						|
								 * The contents of this file are subject to the SugarCRM Public License Version 1.1.2
							 | 
						|
								 * ("License"); You may not use this file except in compliance with the
							 | 
						|
								 * License. You may obtain a copy of the License at http://www.sugarcrm.com/SPL
							 | 
						|
								 * Software distributed under the License is distributed on an  "AS IS"  basis,
							 | 
						|
								 * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for
							 | 
						|
								 * the specific language governing rights and limitations under the License.
							 | 
						|
								 * The Original Code is:  SugarCRM Open Source
							 | 
						|
								 * The Initial Developer of the Original Code is SugarCRM, Inc.
							 | 
						|
								 * Portions created by SugarCRM are Copyright (C) SugarCRM, Inc.;
							 | 
						|
								 * All Rights Reserved.
							 | 
						|
								 * Contributor(s): ______________________________________.
							 | 
						|
								 ********************************************************************************/
							 | 
						|
								require_once('XTemplate/xtpl.php');
							 | 
						|
								require_once('data/Tracker.php');
							 | 
						|
								require_once('modules/Leads/Lead.php');
							 | 
						|
								require_once('modules/Leads/Forms.php');
							 | 
						|
								require_once('include/database/PearDatabase.php');
							 | 
						|
								require_once('include/CustomFieldUtil.php');
							 | 
						|
								require_once('include/ComboUtil.php');
							 | 
						|
								require_once('include/uifromdbutil.php');
							 | 
						|
								require_once('include/FormValidationUtil.php');
							 | 
						|
								
							 | 
						|
								global $mod_strings;
							 | 
						|
								global $app_list_strings;
							 | 
						|
								global $app_strings;
							 | 
						|
								global $current_user;
							 | 
						|
								
							 | 
						|
								$focus = new Lead();
							 | 
						|
								
							 | 
						|
								if(isset($_REQUEST['record']) && isset($_REQUEST['record'])) {
							 | 
						|
								    $focus->id = $_REQUEST['record'];
							 | 
						|
								    $focus->mode = 'edit'; 	
							 | 
						|
								    $focus->retrieve_entity_info($_REQUEST['record'],"Leads");		
							 | 
						|
								    $focus->firstname=$focus->column_fields['firstname'];
							 | 
						|
								    $focus->lastname=$focus->column_fields['lastname'];
							 | 
						|
								}
							 | 
						|
								if(isset($_REQUEST['isDuplicate']) && $_REQUEST['isDuplicate'] == 'true') {
							 | 
						|
									$focus->id = "";
							 | 
						|
								    	$focus->mode = ''; 	
							 | 
						|
								}
							 | 
						|
								//get Block 1 Information
							 | 
						|
								$block_1_header = getBlockTableHeader("LBL_LEAD_INFORMATION");
							 | 
						|
								$block_1 = getBlockInformation("Leads",1,$focus->mode,$focus->column_fields);
							 | 
						|
								
							 | 
						|
								
							 | 
						|
								
							 | 
						|
								//get Address Information
							 | 
						|
								$block_2_header = getBlockTableHeader("LBL_ADDRESS_INFORMATION");
							 | 
						|
								$block_2 = getBlockInformation("Leads",2,$focus->mode,$focus->column_fields);
							 | 
						|
								
							 | 
						|
								//get Description Information
							 | 
						|
								
							 | 
						|
								$block_3_header = getBlockTableHeader("LBL_DESCRIPTION_INFORMATION");
							 | 
						|
								$block_3 = getBlockInformation("Leads",3,$focus->mode,$focus->column_fields);
							 | 
						|
								
							 | 
						|
								
							 | 
						|
								//get Custom Field Information
							 | 
						|
								$block_5 = getBlockInformation("Leads",5,$focus->mode,$focus->column_fields);
							 | 
						|
								if(trim($block_5) != '')
							 | 
						|
								{
							 | 
						|
									$cust_fld = '<table width="100%" border="0" cellspacing="0" cellpadding="0" class="formOuterBorder">';
							 | 
						|
								
							 | 
						|
								        $cust_fld .=  '<tr><td>';
							 | 
						|
									$block_5_header = getBlockTableHeader("LBL_CUSTOM_INFORMATION");
							 | 
						|
								        $cust_fld .= $block_5_header;
							 | 
						|
								        $cust_fld .= '<table width="100%" border="0" cellspacing="1" cellpadding="0">';
							 | 
						|
									$cust_fld .= $block_5;
							 | 
						|
									$cust_fld .= '</table>';
							 | 
						|
								        $cust_fld .= '</td></tr></table>';
							 | 
						|
								}
							 | 
						|
								
							 | 
						|
								
							 | 
						|
								/*
							 | 
						|
								//needed when creating a new contact with a default account value passed in 
							 | 
						|
								if (isset($_REQUEST['account_name']) && is_null($focus->account_name)) {
							 | 
						|
									$focus->account_name = $_REQUEST['account_name'];
							 | 
						|
									if(get_magic_quotes_gpc() == 1)
							 | 
						|
									{
							 | 
						|
										$focus->account_name = stripslashes($focus->account_name);
							 | 
						|
									}
							 | 
						|
								
							 | 
						|
								}
							 | 
						|
								if (isset($_REQUEST['account_id']) && is_null($focus->account_id)) {
							 | 
						|
									$focus->account_id = $_REQUEST['account_id'];
							 | 
						|
								}
							 | 
						|
								*/
							 | 
						|
								
							 | 
						|
								global $theme;
							 | 
						|
								$theme_path="themes/".$theme."/";
							 | 
						|
								$image_path=$theme_path."images/";
							 | 
						|
								//retreiving the combo values array
							 | 
						|
								
							 | 
						|
								$xtpl=new XTemplate ('modules/Leads/EditView.html');
							 | 
						|
								$xtpl->assign("MOD", $mod_strings);
							 | 
						|
								$xtpl->assign("APP", $app_strings);
							 | 
						|
								 
							 | 
						|
								if (isset($focus->firstname)) $xtpl->assign("FIRST_NAME", $focus->firstname);
							 | 
						|
								else $xtpl->assign("FIRST_NAME", "");
							 | 
						|
								$xtpl->assign("LAST_NAME", $focus->lastname);
							 | 
						|
								
							 | 
						|
								$xtpl->assign("BLOCK1", $block_1);
							 | 
						|
								$xtpl->assign("BLOCK2", $block_2);
							 | 
						|
								$xtpl->assign("BLOCK3", $block_3);
							 | 
						|
								$xtpl->assign("BLOCK1_HEADER", $block_1_header);
							 | 
						|
								$xtpl->assign("BLOCK2_HEADER", $block_2_header);
							 | 
						|
								$xtpl->assign("BLOCK3_HEADER", $block_3_header);
							 | 
						|
								
							 | 
						|
								if(isset($cust_fld))
							 | 
						|
								{
							 | 
						|
									$xtpl->assign("CUSTOMFIELD", $cust_fld);
							 | 
						|
								}
							 | 
						|
								if($focus->mode == 'edit')
							 | 
						|
								{
							 | 
						|
									$xtpl->assign("MODE", $focus->mode);
							 | 
						|
								}		
							 | 
						|
								
							 | 
						|
								if (isset($_REQUEST['return_module'])) $xtpl->assign("RETURN_MODULE", $_REQUEST['return_module']);
							 | 
						|
								else $xtpl->assign("RETURN_MODULE","Leads");
							 | 
						|
								if (isset($_REQUEST['return_action'])) $xtpl->assign("RETURN_ACTION", $_REQUEST['return_action']);
							 | 
						|
								else $xtpl->assign("RETURN_ACTION","index");
							 | 
						|
								if (isset($_REQUEST['return_id'])) $xtpl->assign("RETURN_ID", $_REQUEST['return_id']);
							 | 
						|
								
							 | 
						|
								$xtpl->assign("THEME", $theme);
							 | 
						|
								$xtpl->assign("IMAGE_PATH", $image_path);$xtpl->assign("PRINT_URL", "phprint.php?jt=".session_id());
							 | 
						|
								$xtpl->assign("JAVASCRIPT", get_set_focus_js().get_validate_record_js());
							 | 
						|
								$xtpl->assign("ID", $focus->id);
							 | 
						|
								$xtpl->assign("HEADER", get_module_title("Leads", "{MOD.LBL_LEAD}  ".$focus->firstname." ".$focus->lastname, true));
							 | 
						|
								//create the html select code here and assign it
							 | 
						|
								$xtpl->assign("CALENDAR_LANG", "en");$xtpl->assign("CALENDAR_DATEFORMAT", parse_calendardate($app_strings['NTC_DATE_FORMAT']));
							 | 
						|
								
							 | 
						|
								
							 | 
						|
								 $lead_tables = Array('leaddetails','crmentity','leadsubdetails','leadaddress','leadscf'); 
							 | 
						|
								 $tabid = getTabid("Leads");
							 | 
						|
								 $validationData = getDBValidationData($lead_tables,$tabid);
							 | 
						|
								 $fieldName = '';
							 | 
						|
								 $fieldLabel = '';
							 | 
						|
								 $fldDataType = '';
							 | 
						|
								
							 | 
						|
								 $rows = count($validationData);
							 | 
						|
								 foreach($validationData as $fldName => $fldLabel_array)
							 | 
						|
								 {
							 | 
						|
								   if($fieldName == '')
							 | 
						|
								   {
							 | 
						|
								     $fieldName="'".$fldName."'";
							 | 
						|
								   }
							 | 
						|
								   else
							 | 
						|
								   {
							 | 
						|
								     $fieldName .= ",'".$fldName ."'";
							 | 
						|
								   }
							 | 
						|
								   foreach($fldLabel_array as $fldLabel => $datatype)
							 | 
						|
								   {
							 | 
						|
									if($fieldLabel == '')
							 | 
						|
									{
							 | 
						|
											
							 | 
						|
								     		$fieldLabel = "'".$fldLabel ."'";
							 | 
						|
									}		
							 | 
						|
								      else
							 | 
						|
								       {
							 | 
						|
								      $fieldLabel .= ",'".$fldLabel ."'";
							 | 
						|
								        }
							 | 
						|
								 	if($fldDataType == '')
							 | 
						|
								         {
							 | 
						|
								      		$fldDataType = "'".$datatype ."'";
							 | 
						|
								    	}
							 | 
						|
									 else
							 | 
						|
								        {
							 | 
						|
								       		$fldDataType .= ",'".$datatype ."'";
							 | 
						|
								     	}
							 | 
						|
								   }
							 | 
						|
								 }
							 | 
						|
								
							 | 
						|
								$xtpl->assign("VALIDATION_DATA_FIELDNAME",$fieldName);
							 | 
						|
								$xtpl->assign("VALIDATION_DATA_FIELDDATATYPE",$fldDataType);
							 | 
						|
								$xtpl->assign("VALIDATION_DATA_FIELDLABEL",$fieldLabel);
							 | 
						|
								
							 | 
						|
								
							 | 
						|
								//CustomField
							 | 
						|
								/*
							 | 
						|
								$custfld = CustomFieldEditView($focus->id, "Leads", "leadcf", "leadid", $app_strings, $theme);
							 | 
						|
								$xtpl->assign("CUSTOMFIELD", $custfld);
							 | 
						|
								*/
							 | 
						|
								$xtpl->parse("main");
							 | 
						|
								
							 | 
						|
								$xtpl->out("main");
							 | 
						|
								
							 | 
						|
								?>
							 | 
						|
								
							 |