assign("SEARCH", $searchurl); //4600 ends 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 = ''; } if(empty($_REQUEST['record']) && $focus->mode != 'edit'){ setObjectValuesFromRequest($focus); } $disp_view = getView($focus->mode); if($disp_view == 'edit_view') $smarty->assign("BLOCKS",getBlocks($currentModule,$disp_view,$mode,$focus->column_fields)); else { $smarty->assign("BASBLOCKS",getBlocks($currentModule,$disp_view,$mode,$focus->column_fields,'BAS')); $smarty->assign("ADVBLOCKS",getBlocks($currentModule,$disp_view,$mode,$focus->column_fields,'ADV')); } $smarty->assign("OP_MODE",$disp_view); $theme_path="themes/".$theme."/"; $image_path=$theme_path."images/"; //retreiving the combo values array $smarty->assign("MOD", $mod_strings); $smarty->assign("APP", $app_strings); $category = getParentTab(); $smarty->assign("CATEGORY",$category); $lead_name = $focus->lastname; if (getFieldVisibilityPermission($currentModule, $current_user->id,'firstname') == '0') { $lead_name .= ' '.$focus->firstname; } $smarty->assign("NAME",$lead_name); if(isset($cust_fld)) { $smarty->assign("CUSTOMFIELD", $cust_fld); } if($focus->mode == 'edit') { $smarty->assign("UPDATEINFO",updateInfo($focus->id)); $smarty->assign("MODE", $focus->mode); } if(isset($_REQUEST['campaignid'])) $smarty->assign("campaignid",vtlib_purify($_REQUEST['campaignid'])); if (isset($_REQUEST['return_module'])) $smarty->assign("RETURN_MODULE", vtlib_purify($_REQUEST['return_module'])); else $smarty->assign("RETURN_MODULE","Leads"); if (isset($_REQUEST['return_action'])) $smarty->assign("RETURN_ACTION", vtlib_purify($_REQUEST['return_action'])); else $smarty->assign("RETURN_ACTION","index"); if (isset($_REQUEST['return_id'])) $smarty->assign("RETURN_ID", vtlib_purify($_REQUEST['return_id'])); if (isset($_REQUEST['return_viewname'])) $smarty->assign("RETURN_VIEWNAME", vtlib_purify($_REQUEST['return_viewname'])); $smarty->assign("THEME", $theme); $smarty->assign("IMAGE_PATH", $image_path);$smarty->assign("PRINT_URL", "phprint.php?jt=".session_id()); $smarty->assign("ID", $focus->id); $smarty->assign("MODULE",$currentModule); $smarty->assign("SINGLE_MOD",'Lead'); //create the html select code here and assign it $smarty->assign("CALENDAR_LANG", $app_strings['LBL_JSCALENDAR_LANG']); $smarty->assign("CALENDAR_DATEFORMAT", parse_calendardate($app_strings['NTC_DATE_FORMAT'])); $tabid = getTabid("Leads"); $validationData = getDBValidationData($focus->tab_name,$tabid); $data = split_validationdataArray($validationData); $smarty->assign("VALIDATION_DATA_FIELDNAME",$data['fieldname']); $smarty->assign("VALIDATION_DATA_FIELDDATATYPE",$data['datatype']); $smarty->assign("VALIDATION_DATA_FIELDLABEL",$data['fieldlabel']); $check_button = Button_Check($module); $smarty->assign("CHECK", $check_button); $smarty->assign("DUPLICATE",vtlib_purify($_REQUEST['isDuplicate'])); global $adb; // Module Sequence Numbering $mod_seq_field = getModuleSequenceField($currentModule); if($focus->mode != 'edit' && $mod_seq_field != null) { $autostr = getTranslatedString('MSG_AUTO_GEN_ON_SAVE'); $mod_seq_string = $adb->pquery("SELECT prefix, cur_id from vtiger_modentity_num where semodule = ? and active=1",array($currentModule)); $mod_seq_prefix = $adb->query_result($mod_seq_string,0,'prefix'); $mod_seq_no = $adb->query_result($mod_seq_string,0,'cur_id'); if($adb->num_rows($mod_seq_string) == 0 || $adb->num_rows($mod_seq_string) == 0 || $focus->checkModuleSeqNumber($focus->table_name, $mod_seq_field['column'], $mod_seq_prefix.$mod_seq_no)) echo '
'. getTranslatedString('LBL_DUPLICATE'). ' '. getTranslatedString($mod_seq_field['label']) .' - '. getTranslatedString('LBL_CLICK') .' '.getTranslatedString('LBL_HERE').' ' . getTranslatedString('LBL_TO_CONFIGURE'). ' '. getTranslatedString($mod_seq_field['label']) .''; else $smarty->assign("MOD_SEQ_ID",$autostr); } else { $smarty->assign("MOD_SEQ_ID", $focus->column_fields[$mod_seq_field['name']]); } // END if($focus->mode == 'edit') $smarty->display("salesEditView.tpl"); else $smarty->display("CreateView.tpl"); ?>