'leadsource_dom' ,'leadstatus'=>'leadstatus_dom' ,'rating'=>'rating_dom' ,'industry'=>'industry_dom'); $comboFieldArray = getComboArray($comboFieldNames); if (!isset($where)) $where = ""; if (isset($_REQUEST['order_by'])) $order_by = $_REQUEST['order_by']; $url_string = ''; $sorder = 'ASC'; if(isset($_REQUEST['sorder']) && $_REQUEST['sorder'] != '') $sorder = $_REQUEST['sorder']; if($popuptype!='') $url_string .= "&popuptype=".$popuptype; $seedLead = new Lead(); if(isset($_REQUEST['query']) && $_REQUEST['query'] == 'true') { // we have a query $url_string .="&query=true"; if (isset($_REQUEST['first_name'])) $first_name = $_REQUEST['first_name']; if (isset($_REQUEST['last_name'])) $last_name = $_REQUEST['last_name']; if (isset($_REQUEST['company'])) $company = $_REQUEST['company']; if (isset($_REQUEST['current_user_only'])) $current_user_only = $_REQUEST['current_user_only']; if (isset($_REQUEST['assigned_user_id'])) $assigned_user_id = $_REQUEST['assigned_user_id']; $where_clauses = Array(); if(isset($last_name) && $last_name != ""){ array_push($where_clauses, "leaddetails.lastname like '$last_name%'"); $url_string .= "&last_name=".$last_name; } if(isset($first_name) && $first_name != ""){ array_push($where_clauses, "leaddetails.firstname like '%$first_name%'"); $url_string .= "&first_name=".$first_name; } if(isset($company) && $company != ""){ array_push($where_clauses, "leaddetails.company like '%$company%'"); $url_string .= "&company=".$company; } if(isset($current_user_only) && $current_user_only != ""){ array_push($where_clauses, "crmentity.smownerid='$current_user->id'"); $url_string .= "¤t_user_only=".$current_user_only; } if(isset($assigned_user_id) && $assigned_user_id != "") array_push($where_clauses, "crmentity.smownerid = '$assigned_user_id'"); $where = ""; foreach($where_clauses as $clause) { if($where != "") $where .= " and "; $where .= $clause; } $log->info("Here is the where clause for the list view: $where"); } if (!isset($_REQUEST['search_form']) || $_REQUEST['search_form'] != 'false') { // Stick the form header out there. $search_form=new XTemplate ('modules/Leads/PopupSearchForm.html'); $search_form->assign("MOD", $current_module_strings); $search_form->assign("APP", $app_strings); $search_form->assign("POPUPTYPE",$popuptype); if ($order_by !='') $search_form->assign("ORDER_BY", $order_by); if ($sorder !='') $search_form->assign("SORDER", $sorder); if (isset($first_name)) $search_form->assign("FIRST_NAME", $_REQUEST['first_name']); if (isset($last_name)) $search_form->assign("LAST_NAME", $_REQUEST['last_name']); if (isset($company)) $search_form->assign("COMPANY", $_REQUEST['company']); $search_form->assign("JAVASCRIPT", get_clear_form_js()); echo get_form_header($current_module_strings['LBL_SEARCH_FORM_TITLE'], "", false); if(isset($current_user_only)) $search_form->assign("CURRENT_USER_ONLY", "checked"); $search_form->assign("ALPHABETICAL",AlphabeticalSearch('Leads','Popup','last_name','true','basic')); $search_form->parse("main"); $search_form->out("main"); echo get_form_footer(); echo "\n
\n"; } $focus = new Lead(); echo get_form_header($current_module_strings['LBL_LIST_FORM_TITLE'],'', false); $xtpl=new XTemplate ('modules/Leads/Popup.html'); global $theme; $theme_path="themes/".$theme."/"; $image_path=$theme_path."images/"; $xtpl->assign("MOD", $mod_strings); $xtpl->assign("APP", $app_strings); $xtpl->assign("IMAGE_PATH",$image_path); $xtpl->assign("THEME_PATH",$theme_path); //Retreive the list from Database $query = getListQuery("Leads"); if(isset($where) && $where != '') { $query .= ' and '.$where; } if(isset($order_by) && $order_by != '') { $query .= ' ORDER BY '.$order_by.' '.$sorder; } $list_result = $adb->query($query); //Retreiving the no of rows $noofrows = $adb->num_rows($list_result); //Retreiving the start value from request if(isset($_REQUEST['start']) && $_REQUEST['start'] != '') { $start = $_REQUEST['start']; } else { $start = 1; } //Retreive the Navigation array $navigation_array = getNavigationValues($start, $noofrows, $list_max_entries_per_page); // Setting the record count string if ($navigation_array['start'] == 1) { if($noofrows != 0) $start_rec = $navigation_array['start']; else $start_rec = 0; if($noofrows > $list_max_entries_per_page) { $end_rec = $navigation_array['start'] + $list_max_entries_per_page - 1; } else { $end_rec = $noofrows; } } else { if($navigation_array['next'] > $list_max_entries_per_page) { $start_rec = $navigation_array['next'] - $list_max_entries_per_page; $end_rec = $navigation_array['next'] - 1; } else { $start_rec = $navigation_array['prev'] + $list_max_entries_per_page; $end_rec = $noofrows; } } $record_string= $app_strings[LBL_SHOWING]." " .$start_rec." - ".$end_rec." " .$app_strings[LBL_LIST_OF] ." ".$noofrows; //Retreive the List View Table Header $focus->list_mode="search"; $focus->popup_type=$popuptype; $listview_header = getSearchListViewHeader($focus,"Leads",$url_string,$sorder,$order_by); $xtpl->assign("LISTHEADER", $listview_header); //creating a variable to store the relationship requesting record id $record_id = $_REQUEST['recordid']; $focus->record_id = $record_id; $listview_entries = getSearchListViewEntries($focus,"Leads",$list_result,$navigation_array); $xtpl->assign("LISTENTITY", $listview_entries); if($order_by !='') $url_string .="&order_by=".$order_by; if($sorder !='') $url_string .="&sorder=".$sorder; $navigationOutput = getTableHeaderNavigation($navigation_array, $url_string,"Leads","Popup"); $xtpl->assign("NAVIGATION", $navigationOutput); $xtpl->assign("RECORD_COUNTS", $record_string); $xtpl->parse("main"); $xtpl->out("main"); ?>