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;
|
|
namespace CY.WebForm.Pages.business
|
{
|
//吴辉
|
//合作客户-维护管理
|
public partial class SendAllCor : BasePage
|
{
|
OA_CorporateClientsBLL bll_OA_CorporateClientsBLL = null;
|
Sys_DictionaryBLL _Sys_DictionaryBLL = null;
|
OA_StaffBLL bll_OA_StaffBLL = null;
|
Sys_CitySiteBLL bll_Sys_CitySiteBLL = null;
|
|
//初始化
|
public SendAllCor()
|
{
|
_Sys_DictionaryBLL = new Sys_DictionaryBLL();
|
bll_OA_CorporateClientsBLL = new OA_CorporateClientsBLL();
|
bll_OA_StaffBLL = new OA_StaffBLL();
|
bll_Sys_CitySiteBLL = new Sys_CitySiteBLL();
|
}
|
|
//页面加载
|
protected void Page_Load(object sender, EventArgs e)
|
{
|
if (!IsPostBack)
|
{
|
BindProvince();
|
InitialSelectData();
|
}
|
}
|
|
//加载查询条件
|
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.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.RepClientList.DataSource = bll_OA_CorporateClientsBLL.GetModelPageList(pa,
|
CurrentUser.MemberId,
|
this.txtquery_userName.Value,
|
string.IsNullOrEmpty(this.txtRegTimeStart.Value) ? beginTime : Convert.ToDateTime(this.txtRegTimeStart.Value),
|
string.IsNullOrEmpty(this.txtRegTimeEnd.Value) ? endTime : Convert.ToDateTime(this.txtRegTimeEnd.Value),
|
this.selAccountManagerId.Value,
|
this.selBusinessManagerId.Value,
|
this.selCustomerIndustriesId.Value,
|
this.selCustomerTypeId.Value,
|
this.selDegreeImportanId.Value,
|
this.selLastOrderTime.Value,
|
this.selOrderCount.Value,
|
this.selOrderMoney.Value,
|
this.selSourcesInfoId.Value,
|
this.selTurnoverIntentionId.Value,
|
this.txtOrderCount.Value,
|
this.txtOrderMoney.Value,
|
this.txtUserNum.Value,
|
this.txtLastOrderTime.Value,
|
this.selectProvince.SelectedItem.Text.Replace("全部", ""),
|
this.selectCity.SelectedItem.Text.Replace("全部", ""),
|
this.selectCounty.SelectedItem.Text.Replace("全部", ""),
|
(CurrentUser.TrueType == "员工"),
|
CurrentUser.TrueMemberId,
|
CurrentUser.StaffId);
|
this.RepClientList.DataBind();
|
}
|
|
//分页事件
|
protected void AspNetPager1_PageChanged(object src, EventArgs e)
|
{
|
BindList();
|
}
|
|
//查询事件
|
protected void btn_Search_Click(object sender, EventArgs e)
|
{
|
BindList();
|
}
|
|
//绑定省
|
protected void BindProvince()
|
{
|
this.selectProvince.Items.Clear();
|
if (CurrentUser.TrueType == "员工")
|
this.selectProvince.DataSource = bll_Sys_CitySiteBLL.SelectStaffManageProvinceList(CurrentUser.TrueMemberId);
|
else
|
this.selectProvince.DataSource = bll_Sys_CitySiteBLL.SelectAllNextModel(0, 0, 1);
|
|
this.selectProvince.DataTextField = "Name";
|
this.selectProvince.DataValueField = "Keyid";
|
this.selectProvince.DataBind();
|
this.selectProvince.Items.Insert(0, new ListItem("全部", ""));
|
this.selectCity.Items.Insert(0, new ListItem("全部", ""));
|
this.selectCounty.Items.Insert(0, new ListItem("全部", ""));
|
}
|
|
//改变省绑定市
|
protected void ChangeProvince(object sender, EventArgs e)
|
{
|
this.selectCity.Items.Clear();
|
this.selectCounty.Items.Clear();
|
Sys_CitySite m_Sys_CitySite = bll_Sys_CitySiteBLL.GetModelByKeyid(this.selectProvince.SelectedValue.ToInt32() ?? 0);
|
if (m_Sys_CitySite != null)
|
{
|
if (CurrentUser.TrueType == "员工")
|
this.selectCity.DataSource = bll_Sys_CitySiteBLL.SelectStaffManageCityList(m_Sys_CitySite.Keyid, CurrentUser.TrueMemberId);
|
else
|
this.selectCity.DataSource = bll_Sys_CitySiteBLL.SelectAllNextModel(m_Sys_CitySite.Keyid, 0, 2);
|
|
this.selectCity.DataTextField = "Name";
|
this.selectCity.DataValueField = "Keyid";
|
this.selectCity.DataBind();
|
}
|
this.selectCity.Items.Insert(0, new ListItem("全部", ""));
|
this.selectCounty.Items.Insert(0, new ListItem("全部", ""));
|
}
|
|
//改变市绑定区
|
protected void ChangeCity(object sender, EventArgs e)
|
{
|
this.selectCounty.Items.Clear();
|
Sys_CitySite m_Sys_CitySite = bll_Sys_CitySiteBLL.GetModelByKeyid(this.selectCity.SelectedValue.ToInt32() ?? 0);
|
if (m_Sys_CitySite != null)
|
{
|
if (CurrentUser.TrueType == "员工")
|
this.selectCounty.DataSource = bll_Sys_CitySiteBLL.SelectStaffManageCountryList(m_Sys_CitySite.ProvinceId, m_Sys_CitySite.Keyid, CurrentUser.TrueMemberId);
|
else
|
this.selectCounty.DataSource = bll_Sys_CitySiteBLL.SelectProxyNextModel(m_Sys_CitySite.ProvinceId, m_Sys_CitySite.Keyid, 3);
|
|
this.selectCounty.DataTextField = "Name";
|
this.selectCounty.DataValueField = "Keyid";
|
this.selectCounty.DataBind();
|
}
|
this.selectCounty.Items.Insert(0, new ListItem("全部", ""));
|
}
|
}
|
}
|