merge_module = $_REQUEST['return_module']; $focus->load_merge_bean($focus->merge_module, true, $_REQUEST['record']); //get all available column fields //TO DO: add custom field handling $avail_fields=array(); $sel_fields=array(); $temp_field_array = $focus->merge_bean->field_defs; $bean_data=array(); foreach($temp_field_array as $field_array) { if (isset($field_array['merge_filter']) ) { if (strtolower($field_array['merge_filter'])=='enabled' or strtolower($field_array['merge_filter'])=='selected') { $col_name = $field_array['name']; if(!isset($focus->merge_bean_strings[$field_array['vname']])) { $col_label = $col_name; } else { $col_label = str_replace(':', '', $focus->merge_bean_strings[$field_array['vname']]); } if (strtolower($field_array['merge_filter'])=='selected') { $sel_fields[$col_name]=$col_label; } else { $avail_fields[$col_name] = $col_label; } $bean_data[$col_name]=$focus->merge_bean->$col_name; } } } ///////////////////////////////////////////////////////// //Print the master record header to the page $params = array(); $params[] = "{$GLOBALS['app_list_strings']['moduleList'][$focus->merge_bean->module_dir]}"; $params[] = "{$focus->merge_bean->name}"; $params[] = $mod_strings['LBL_LBL_MERGE_RECORDS_STEP_1']; echo getClassicModuleTitle($focus->merge_bean->module_dir, $params, true); $xtpl = new XTemplate ('modules/MergeRecords/Step1.html'); $xtpl->assign("MOD", $mod_strings); $xtpl->assign("APP", $app_strings); $xtpl->assign("BEANDATA",$json->encode($bean_data)); //This is for the implemetation of finding all dupes for a module, not just //dupes for a particular record //commenting this out for now //$choose_master_by_options = array('First Record Found', 'Most Recent Record', 'Oldest Record', 'Record Containing Most Data'); //$xtpl->assign("CHOOSE_MASTER_BY_OPTIONS", get_select_options_with_id($choose_master_by_options, 'First Record Found')); $xtpl->assign("MERGE_MODULE", $focus->merge_module); $xtpl->assign("ID", $focus->merge_bean->id); $xtpl->assign("FIELD_AVAIL_OPTIONS", get_select_options_with_id($avail_fields,'')); $xtpl->assign("LBL_ADD_BUTTON", translate('LBL_ADD_BUTTON')); if(isset($_REQUEST['return_id'])) $xtpl->assign("RETURN_ID", $_REQUEST['return_id']); $xtpl->assign("RETURN_ACTION", $_REQUEST['return_action']); $xtpl->assign("RETURN_MODULE", $_REQUEST['return_module']); //set the url $port=null; if(isset($_SERVER['SERVER_PORT']) && $_SERVER['SERVER_PORT'] != 80 && $_SERVER['SERVER_PORT'] != 443) { $port = $_SERVER['SERVER_PORT']; } $xtpl->assign("URL", appendPortToHost($sugar_config['site_url'], $port)); //set images $xtpl->assign("RIGHTARROW_BIG_IMAGE", SugarThemeRegistry::current()->getImageURL('rightarrow_big.gif')); $xtpl->assign("DELETE_INLINE_IMAGE", SugarThemeRegistry::current()->getImageURL('delete_inline.gif')); //process preloaded filter. $pre_loaded=null; foreach ($sel_fields as $colName=>$colLabel) { $pre_loaded.=addFieldRow($colName,$colLabel,$bean_data[$colName]); } $xtpl->assign("PRE_LOADED_FIELDS",$pre_loaded); $xtpl->assign("OPERATOR_OPTIONS",$json->encode($app_list_strings['merge_operators_dom'])); $xtpl->parse("main.field_select_block"); $xtpl->parse("main"); $xtpl->out("main"); /** * This function is equivalent of AddFieldRow in merge.js. is being used to * preload the filter criteria based on the vardef. *
*/ function addFieldRow($colName,$colLabel,$colValue) { global $theme, $app_list_strings; static $operator_options; if (empty($operator_options)) { $operator_options= get_select_options_with_id($app_list_strings['merge_operators_dom'],''); } $LBL_REMOVE = translate('LBL_REMOVE'); $deleteInlineImage = SugarThemeRegistry::current()->getImageURL('delete_inline.gif'); $snippet=<<
{$LBL_REMOVE}  {$colLabel}: 
EOQ; return $snippet; }