using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.UI; using System.Web.UI.WebControls; using CY.BLL; using CY.Model; using CY.Infrastructure.Query; using CY.Infrastructure.Common; using CY.BLL.Sys; using CY.BLL.OA; namespace CY.WebForm.Pages.business { //吴辉 //意向客户访问管理 public partial class CustomerAccessRecordList :BasePage { public string Province = ""; //接收值 Request["selectProvince"].ToString2(); public string City = "";//接收值 Request["selectCity"].ToString2(); public string County = "";//接收值 Request["selectCounty"].ToString2(); OA_IntentionCustomerBLL intentionCustomerBLL = null; OA_IntentionCustomer intentionCustomer = null; Sys_DictionaryBLL _Sys_DictionaryBLL = null; OA_StaffBLL bll_OA_StaffBLL = null; //初始化 public CustomerAccessRecordList() { _Sys_DictionaryBLL = new Sys_DictionaryBLL(); intentionCustomerBLL = new OA_IntentionCustomerBLL(); intentionCustomer = new OA_IntentionCustomer(); bll_OA_StaffBLL = new OA_StaffBLL(); } //页面加载 protected void Page_Load(object sender, EventArgs e) { Province = Request["selectProvince"].ToString2(); City = Request["selectCity"].ToString2(); County = Request["selectCounty"].ToString2(); if (!IsPostBack) { Province = CurrentUser.Province; InitialSelectData(); if (Request["Keyid"].ToInt32() > 0) { intentionCustomer = intentionCustomerBLL.getSingleIntentionCustomer(Request["Keyid"].ToString2()); if (intentionCustomerBLL.DeleteModel(intentionCustomer)) JavaScript.MessageBox("删除成功", this); else JavaScript.MessageBox("删除失败", this); BindList(); } } } //查询条件 protected void InitialSelectData() { this.selSourcesInfoId.DataSource = _Sys_DictionaryBLL.GetDataByType("客户来源"); this.selSourcesInfoId.DataBind(); this.selSourcesInfoId.Items.Insert(0, new ListItem("全部", "")); this.selCustomerIndustriesId.DataSource = _Sys_DictionaryBLL.GetDataByType("客户所属行业"); this.selCustomerIndustriesId.DataBind(); this.selCustomerIndustriesId.Items.Insert(0, new ListItem("全部", "")); this.selCustomerTypeId.DataSource = _Sys_DictionaryBLL.GetDataByType("客户类型"); this.selCustomerTypeId.DataBind(); this.selCustomerTypeId.Items.Insert(0, new ListItem("全部", "")); this.selDegreeImportanId.DataSource = _Sys_DictionaryBLL.GetDataByType("客户重要程度"); this.selDegreeImportanId.DataBind(); this.selDegreeImportanId.Items.Insert(0, new ListItem("全部", "")); this.selCustomerStatusId.DataSource = _Sys_DictionaryBLL.GetDataByType("意向客户状态"); this.selCustomerStatusId.DataBind(); this.selCustomerStatusId.Items.Insert(0, new ListItem("全部", "")); this.selTurnoverIntentionId.DataSource = _Sys_DictionaryBLL.GetDataByType("成交意向"); this.selTurnoverIntentionId.DataBind(); this.selTurnoverIntentionId.Items.Insert(0, new ListItem("全部", "")); //业务经理 this.selBusinessManagerId.DataSource = bll_OA_StaffBLL.SelectListByFirmId(CurrentUser.MemberId, true, false); this.selBusinessManagerId.DataTextField = "Name"; this.selBusinessManagerId.DataValueField = "Keyid"; this.selBusinessManagerId.DataBind(); this.selBusinessManagerId.Items.Insert(0, new ListItem("全部", "")); //客户经理 this.selAccountManagerId.DataSource = bll_OA_StaffBLL.SelectListByFirmId(CurrentUser.MemberId, false, true); this.selAccountManagerId.DataTextField = "Name"; this.selAccountManagerId.DataValueField = "Keyid"; this.selAccountManagerId.DataBind(); this.selAccountManagerId.Items.Insert(0, new ListItem("全部", "")); } //加载数据 private void BindList() { DateTime? beginTime = null; DateTime? endTime = null; Pagination pa = new Pagination(); pa.PageSize = int.MaxValue; pa.PageIndex =1; this.RepCustomerList.DataSource = intentionCustomerBLL.getAllIntentionCustomerList(pa, CurrentUser.MemberId, this.txtquery_userName.Value, string.IsNullOrEmpty(this.txtRegTimeStart.Value) ? beginTime : Convert.ToDateTime(this.txtRegTimeStart.Value), string.IsNullOrEmpty(this.txtRegTimeEnd.Value) ? endTime : MyConvert.GetDateTime(this.txtRegTimeEnd.Value), selSourcesInfoId.Value, selCustomerIndustriesId.Value, selAccountManagerId.Value, selBusinessManagerId.Value, selCustomerTypeId.Value, selTurnoverIntentionId.Value, selCustomerStatusId.Value, selDegreeImportanId.Value, Request["selectProvince"].ToString2(), Request["selectCity"].ToString2(), Request["selectCounty"].ToString2(), selNupdoor.Value, txtNupdoor.Value, selNphone.Value, txtNphone.Value, selNqq.Value, txtNqq.Value, selNmessage.Value, txtNmessage.Value, selNemial.Value, txtNemial.Value, selNDirectMail.Value, txtNDirectMail.Value, selNall.Value, ""); this.RepCustomerList.DataBind(); } //查询事件 protected void btn_Register_Click(object sender, EventArgs e) { BindList(); } } }