123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659 |
- using System;
- using System.Collections.Generic;
- using System.ComponentModel;
- using System.Data;
- using System.Drawing;
- using System.Linq;
- using System.Text;
- using System.Windows.Forms;
- using System.Globalization;
- using System.Collections;
- using LYFZ.ComponentLibrary;
- namespace LYFZ.Software.MainBusiness.SMSManagement.ShortSmsMessage
- {
- public partial class FrmScreening : LYFZ.Software.UI.SMSManagement.ShortSmsMessage.FrmScreening
- {
- private delegate void UpdateControl();
- public FrmScreening()
- {
- this.ucPagerEx1.EventPaging += ucPagerEx1_EventPaging;
- this.IsCustomScrollBar = true;
- this.Load += FrmScreening_Load;
- this.btnSelcet.Click += btnSelcet_Click;
- this.btnOk.Click += btnOk_Click;
- this.Shown += FrmScreening_Shown;
- this.btnHightSelect.Click += btnHightSelect_Click;
- this.SQueryTableName = orderCustomerTableName;
- this.rdoAll.Click += rdoAll_Click;
- this.rdoMan.Click += rdoMan_Click;
- this.rdoWoman.Click += rdoWoman_Click;
-
- this.cmbCustomerType.SelectedIndexChanged += cmbCustomerType_SelectedIndexChanged;
- this.cmbCustomerType.Click += cmbCustomerType_Click;
- this.dgvCustomerList.Sorted += dgvCustomerList_Sorted;
- this.tlsAllSelect.Click += tlsAllSelect_Click;
- this.tlsFangSelect.Click += tlsFangSelect_Click;
- this.tlsAddSelect.Click += tlsAddSelect_Click;
- this.btnExport.Click += btnExport_Click;
- if (LYFZ.BLL.BLL_ErpUser.GetRights(LYFZ.BLL.BLL_ErpUser.CurrentUserRights.ShortSmsMessageCompetence, CustomAttributes.OperatingAuthority.DataExport))
- {
- this.btnExport.Enabled = true;
- }
- else
- {
- this.btnExport.Enabled = false;
- }
- CurrentBusinessType = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.GetBusinessType();
- bindCmbCustomerType(this.cmbCustomerType);
- }
- /// <summary>
- /// 当前软件业务类型
- /// </summary>
- LYFZ.Software.MainBusiness.EnumPermissions.BusinessType CurrentBusinessType = EnumPermissions.BusinessType.旗舰版;
- public static void bindCmbCustomerType(ComponentLibrary.ComboBoxEx _cmbCustomerType)
- {
- List<string> customerTypeList = new List<string>();
- customerTypeList.AddRange(Enum.GetNames(typeof(SQueryCustomerType)));
- switch (LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.GetBusinessType())
- {
- case EnumPermissions.BusinessType.婚纱版:
- customerTypeList.Remove(SQueryCustomerType.儿童客户.ToString());
- break;
- case EnumPermissions.BusinessType.儿童版:
- customerTypeList.Remove(SQueryCustomerType.婚纱客户.ToString());
- break;
- }
- _cmbCustomerType.DataSource = customerTypeList;
- _cmbCustomerType.SelectedItem = SQueryCustomerType.全部.ToString();
-
- }
- void btnExport_Click(object sender, EventArgs e)
- {
- this.dgvCustomerList.ExportDataTable();
- }
- void tlsAddSelect_Click(object sender, EventArgs e)
- {
- if (this.dgvCustomerList.SelectedRows != null && this.dgvCustomerList.SelectedRows.Count > 0)
- {
- bool isNullTelephone = false;
- this.SelectPhoneNumbers.Clear();
- foreach (DataGridViewRow row in this.dgvCustomerList.SelectedRows)
- {
- if (row.Cells["Cus_Telephone"].Value.ToString().Length >= 11)
- {
- this.SelectPhoneNumbers.Add(new ItemValue(row.Cells["Cus_Telephone"].Value.ToString(), row.Cells["Cus_Name"].Value.ToString()));
- }
- else
- {
- isNullTelephone = true;
- }
- }
- SelectPhoneNumbersMessageBox(isNullTelephone);
- }
- else {
- MessageBoxCustom.Show("请选择客户");
- }
- }
- void tlsFangSelect_Click(object sender, EventArgs e)
- {
- Unselected();
-
- }
- //反选
- private void Unselected()
- {
- if (dgvCustomerList.Rows.Count > 0)
- {
- for (int i = 0; i < dgvCustomerList.Rows.Count; i++)
- {
- dgvCustomerList.Rows[i].Selected = !dgvCustomerList.Rows[i].Selected;
- }
- }
- }
- void tlsAllSelect_Click(object sender, EventArgs e)
- {
- this.dgvCustomerList.SelectAll();
- }
- void dgvCustomerList_Sorted(object sender, EventArgs e)
- {
- Bind();
- }
- void cmbCustomerType_Click(object sender, EventArgs e)
- {
- this.CurrentQueryObject = null;
- }
- void cmbCustomerType_SelectedIndexChanged(object sender, EventArgs e)
- {
- this.QCustomerType = (SQueryCustomerType)Enum.Parse(typeof(SQueryCustomerType), this.cmbCustomerType.Text);
- this.plCurrentQuerySex.Visible = true;
- SetSQueryWhereString();
- }
- void rdoWoman_Click(object sender, EventArgs e)
- {
- if (this.CurrentQuerySex.Trim() != "女")
- {
- this.CurrentQuerySex = "女";
- this.SQueryTableName = this.personalCustomerTableName;
- Bind();
- }
- }
- void rdoMan_Click(object sender, EventArgs e)
- {
- if (this.CurrentQuerySex.Trim()!="男")
- {
- this.CurrentQuerySex = "男";
- this.SQueryTableName = this.personalCustomerTableName;
- Bind();
- }
- }
- void rdoAll_Click(object sender, EventArgs e)
- {
- if (this.CurrentQuerySex.Trim().Length > 0)
- {
- this.CurrentQuerySex = "";
- if (this.CurrentQueryObject != null)
- {
- this.SQueryTableName = this.CurrentQueryObject.SQueryTableName;
- }
- else {
- this.SQueryTableName = this.orderCustomerTableName;
- }
- Bind();
- }
- }
- string currentQuerySex = "";
- /// <summary>
- /// 当前查询性别
- /// </summary>
- public string CurrentQuerySex
- {
- get { return currentQuerySex; }
- set { currentQuerySex = value; }
- }
- void btnOk_Click(object sender, EventArgs e)
- {
- GetAllPhoneNumbers();
- }
- void btnSelcet_Click(object sender, EventArgs e)
- {
- this.currentQueryObject = null;
- SetSQueryWhereString();
- Bind();
- }
- /// <summary>
- /// 设置查询条件
- /// </summary>
- void SetSQueryWhereString()
- {
- string keyWords = this.txtKeyWords.Text.Trim();
- if (keyWords.Length > 0)
- {
- this.SQueryWhereString = " Ord_Number like '%" + keyWords + "%' "
- + " or Cus_Name like '%" + keyWords + "%'"
- + " or Cus_Name_py like '%" + keyWords + "%'"
- + " or Cus_Telephone like '%" + keyWords + "%'"
- + " or Cus_Region like '%" + keyWords + "%'";
- }
- else {
- this.SQueryWhereString = "1=1";
- }
- this.SQueryTableName = orderCustomerTableName;
- }
- void FrmScreening_Load(object sender, EventArgs e)
- {
-
- }
- #region 加载
- protected void FrmScreening_Shown(object sender, EventArgs e)
- {
- //绑定门店
- BindStoreList(LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.IsGroupEdition);
- try
- {
- Bind();
- }
- catch (Exception ex)
- {
- MessageBoxCustom.Show(ex.Message);
- }
- }
- #endregion
- public void Bind()
- {
- this.ucPagerEx1.PageCurrent = 1;
- this.ucPagerEx1.Bind();
- HideColumn();
- }
- LYFZ.Software.MainBusiness.SMSManagement.ShortSmsMessage.FrmHigehrSelect higeSelect = new FrmHigehrSelect();
- #region 高级查询
- SQueryObject currentQueryObject = null;
- /// <summary>
- /// 当前查询对象
- /// </summary>
- public SQueryObject CurrentQueryObject
- {
- get { return currentQueryObject; }
- set { currentQueryObject = value; }
- }
- protected void btnHightSelect_Click(object sender, EventArgs e)
- {
- try
- {
-
- if (higeSelect.ShowDialog() == System.Windows.Forms.DialogResult.OK)
- {
- this.QCustomerType = higeSelect.CurrentQueryObject.QCustomerType;
- this.cmbCustomerType.SelectedItem = this.QCustomerType.ToString();
- this.SQueryTableName = higeSelect.CurrentQueryObject.SQueryTableName;
- this.SQueryWhereString = higeSelect.CurrentQueryObject.SQueryWhereString;
- this.CurrentQueryObject = higeSelect.CurrentQueryObject;
-
- Bind();
- }
- }
- catch (Exception ex)
- {
- MessageBoxCustom.Show(ex.Message);
- }
- }
- #endregion
- /// <summary>
- /// 按订单查询客户的表名
- /// </summary>
- string orderCustomerTableName = "Vw_OrderCustomerList";
- /// <summary>
- /// 按人查询客户的表名
- /// </summary>
- string personalCustomerTableName = "Vw_PersonalCustomerList";
- string _SQueryTableName = "";
- /// <summary>
- /// 查询表名
- /// </summary>
- public string SQueryTableName
- {
- get { return _SQueryTableName; }
- set { _SQueryTableName = value; }
- }
- string _SQueryWhereString = "1=1";
- /// <summary>
- /// 查询条件语句
- /// </summary>
- public string SQueryWhereString
- {
- get { return _SQueryWhereString; }
- set { _SQueryWhereString = value; }
- }
- SQueryCustomerType _QCustomerType = SQueryCustomerType.全部;
- /// <summary>
- /// 查询的客户类型
- /// </summary>
- public SQueryCustomerType QCustomerType
- {
- get { return _QCustomerType; }
- set { _QCustomerType = value; }
- }
- List<ItemValue> selectPhoneNumbers = new List<ItemValue>();
- /// <summary>
- ///
- /// </summary>
- public List<ItemValue> SelectPhoneNumbers
- {
- get { return selectPhoneNumbers; }
- set { selectPhoneNumbers = value; }
- }
- #region 画分页
- /// <summary>
- /// 获取筛选的所有号码
- /// </summary>
- void GetAllPhoneNumbers()
- {
- DataTable retTable = new DataTable();
- if (this.ucPagerEx1.NMax <= LYFZ.BLL.BLL_SystemGlobalSetting.SysTemGlobalSetMoel.ReportFormPageSize)
- {
- retTable = this.ucPagerEx1.TbDataSource;
- }
- else
- {
- LYFZ.ComponentLibrary.FrmLoadHandling.LoadDoWorkMethod(delegate(object obj, BackgroundWorker backgroundWorker)
- {
- DataSet da = LYFZ.Helper.SQLHelper.Query("select Cus_Name,Cus_Telephone from " + SQueryTableName + " where (len(Cus_Telephone)>10) and " + getWhereString()); //pageData.QueryDataTable();
- retTable = da.Tables[0];
-
- });
- }
- bool isNullTelephone = false;
- this.SelectPhoneNumbers.Clear();
- if (retTable.Rows.Count > 0)
- {
- #region
- for (int i = 0; i < retTable.Rows.Count; i++)
- {
- if (retTable.Rows[i]["Cus_Telephone"].ToString().Length >= 11)
- {
- this.SelectPhoneNumbers.Add(new ItemValue(retTable.Rows[i]["Cus_Telephone"].ToString(), retTable.Rows[i]["Cus_Name"].ToString()));
- }
- else {
- isNullTelephone = true;
- }
- }
- #endregion
- }
- SelectPhoneNumbersMessageBox(isNullTelephone);
- }
- void SelectPhoneNumbersMessageBox(bool isNullTelephone)
- {
- if (this.SelectPhoneNumbers.Count > 0)
- {
- if (isNullTelephone)
- {
- MessageBoxCustom.Show("选择的客户中发现无效手机号已被自动忽略!");
- }
- this.DialogResult = System.Windows.Forms.DialogResult.OK;
- }
- else
- {
- MessageBoxCustom.Show("选择的客户中没有找到有效的手机号!");
- }
- }
- string GetStoreWhere()
- {
- if (this.cbxStoreList.Items.Count > 0)
- {
- ItemValue itemStore = (ItemValue)this.cbxStoreList.SelectedItem;
- if (itemStore.Value.ToString() != "0")
- {
- return String.Format("Ord_DividedShop='{0}' and ", itemStore.Value.ToString());
- }
- }
- return "";
- }
- /// <summary>
- /// 获取条件语句
- /// </summary>
- /// <returns></returns>
- string getWhereString()
- {
- string retWherestr = SQueryWhereString;
- if (this.CurrentQuerySex.Trim().Length > 0)
- {
- if (this.QCustomerType == SQueryCustomerType.全部)
- {
- retWherestr = "(" + SQueryWhereString + ") and ( Ord_Type<>1 or (Ord_Type=1 and GM_Relation<>'本人')) and Cus_Sex_cs='" + this.CurrentQuerySex.Trim() + "'";
- }
- else if (this.QCustomerType == SQueryCustomerType.儿童客户)
- {
- retWherestr = "(" + SQueryWhereString + ") and (Ord_Type=1 and GM_Relation<>'本人') and Cus_Sex_cs='" + this.CurrentQuerySex.Trim() + "'";
- }
- else {
- retWherestr = "(" + SQueryWhereString + ") and Cus_Sex_cs='" + this.CurrentQuerySex.Trim() + "'";
- }
- }
- if (!SQueryWhereString.ToLower().Contains("Ord_Type="))
- {
- switch (this.QCustomerType)
- {
- case SQueryCustomerType.婚纱客户:
- retWherestr = "(" + retWherestr + ") and Ord_Type='0' ";
- break;
- case SQueryCustomerType.儿童客户:
- retWherestr = "(" + retWherestr + ") and Ord_Type='1' ";
- break;
- case SQueryCustomerType.写真客户:
- retWherestr = "(" + retWherestr + ") and (Ord_Type='2')";
- break;
- case SQueryCustomerType.其它客户:
- retWherestr = "(" + retWherestr + ") and (Ord_Type='3')";
- break;
- }
- }
- return GetStoreWhere()+"("+retWherestr+")";
- }
- /// <summary>
- /// 画分页
- /// </summary>
- /// <param name="e"></param>
- /// <returns></returns>
- private int ucPagerEx1_EventPaging(UCPager.EventPagingArg e)
- {
- LYFZ.UCPager.PageData pageData = new LYFZ.UCPager.PageData();
- pageData.TableName = SQueryTableName;
- pageData.PageIndex = this.ucPagerEx1.PageCurrent;
- pageData.PageSize = LYFZ.BLL.BLL_SystemGlobalSetting.SysTemGlobalSetMoel.ReportFormPageSize;
- this.ucPagerEx1.PageSize = pageData.PageSize;
- pageData.QueryCondition = getWhereString();
-
- pageData.QueryFieldName = "id"
- +",Ord_Number"
- +",Ord_Type"
- +",Ord_Type_CH"
- +",Cus_Name"
- +",Cus_Telephone"
- +",Cus_Sex_cs"
- +",Cus_Region"
- +",GregorianCalendar_Birthday"
- +",Age_String"
- +",Age_Day"
- +",GregorianCalendar_DayForMarriage"
- +",Ord_PhotographyCategory"
- +",Ord_SeriesName"
- +",Ord_SeriesPrice"
- +",yingFuPrice"
- +",Ord_OrderClass"
- +",Ord_CustomerSource"
- +",Ord_CreateDateTime";
- pageData.OrderStr = " ID desc ";
- LYFZ.ComponentLibrary.DataGridViewEx.SortedColumnModel sortModel
- = this.dgvCustomerList.GetSortedColumnModel("Ord_CreateDateTime", ListSortDirection.Descending);
- pageData.OrderStr = sortModel.OrderStr.TrimStart();
- dgvCustomerList.Rows.Clear();
- DataTable dt = null;
- LYFZ.ComponentLibrary.FrmLoadHandling.LoadDoWorkMethod(delegate(object obj, BackgroundWorker backgroundWorker)
- {
- dt = pageData.QueryDataTable().Tables[0];
-
- });
- if (dt != null)
- {
- if (dt.Rows.Count > 0)
- {
- try
- {
- this.ucPagerEx1.TbDataSource = dt;
- }
- catch { }
- #region
- for (int i = 0; i < dt.Rows.Count; i++)
- {
- DataGridViewRow row = new DataGridViewRow();
- row.CreateCells(this.dgvCustomerList);
- row.Cells[0].Value = dt.Rows[i]["Ord_Number"].ToString();
- row.Cells[1].Value = dt.Rows[i]["Ord_Type_CH"].ToString();
- row.Cells[2].Value = dt.Rows[i]["Cus_Name"].ToString();
- row.Cells[3].Value = dt.Rows[i]["Cus_Telephone"].ToString();
- row.Cells[4].Value = dt.Rows[i]["Cus_Sex_cs"].ToString();
- row.Cells[5].Value = dt.Rows[i]["Cus_Region"].ToString();
- DateTime birthday = LYFZ.WinAPI.CustomPublicMethod.GetNullDateTime();
- DateTime.TryParse(dt.Rows[i]["GregorianCalendar_Birthday"].ToString(), out birthday);
- if (birthday > LYFZ.WinAPI.CustomPublicMethod.GetNullDateTime())
- {
- row.Cells[6].Value = birthday.ToString("yyyy-MM-dd");
- }
- row.Cells[7].Value = dt.Rows[i]["Age_String"].ToString();
- row.Cells[8].Value = dt.Rows[i]["Age_Day"].ToString();
- DateTime dayForMarriage = LYFZ.WinAPI.CustomPublicMethod.GetNullDateTime();
- DateTime.TryParse(dt.Rows[i]["GregorianCalendar_DayForMarriage"].ToString(), out dayForMarriage);
- if (dayForMarriage > LYFZ.WinAPI.CustomPublicMethod.GetNullDateTime())
- {
- row.Cells[9].Value = dayForMarriage.ToString("yyyy-MM-dd");
- }
- row.Cells[10].Value = dt.Rows[i]["Ord_PhotographyCategory"].ToString();
- row.Cells[11].Value = dt.Rows[i]["Ord_SeriesName"].ToString();
- row.Cells[12].Value = dt.Rows[i]["Ord_SeriesPrice"].ToString();
- row.Cells[13].Value = dt.Rows[i]["yingFuPrice"].ToString();
- row.Cells[14].Value = dt.Rows[i]["Ord_OrderClass"].ToString();
- row.Cells[15].Value = dt.Rows[i]["Ord_CustomerSource"].ToString();
- row.Cells[16].Value = dt.Rows[i]["Ord_CreateDateTime"].ToString();
- this.dgvCustomerList.Rows.Add(row);
- }
- #endregion
- }
- }
- return pageData.TotalCount;
- }
- /// <summary>
- /// 邦定门店
- /// </summary>
- void BindStoreList(bool isGroupEdition)
- {
- DataRowCollection rows = null;
- int allValue = 0;
- if (isGroupEdition)
- {
- this.cbxStoreList.Show();
- LYFZ.ComponentLibrary.FrmLoadHandling.LoadDoWorkMethod(delegate (object obj, BackgroundWorker backgroundWorker)
- {
- rows = LYFZ.DAL.DAL_ErpCompanyInfo.GetCompanyBasicInfoList(LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.SoftwareInfo.SDomainName.Trim());
-
- });
- if (rows == null)
- {
- MessageBoxCustom.Show("获取门店信息失败!");
- return;
- }
- else
- {
- if (rows.Count > 1)
- {
- ItemValue itemAll = new ItemValue(allValue, "全部");
- this.cbxStoreList.Items.Add(itemAll);
- this.cbxStoreList.SelectedIndex = 0;
- }
- //是否找到当前店
- bool isCurrentStore = false;
- foreach (DataRow row in rows)
- {
- ItemValue itemStore = new ItemValue(row["Company_DividedShop"].ToString(), row["Company_Name"].ToString());
- itemStore.Tag = row;
- this.cbxStoreList.Items.Add(itemStore);
- if (row["Company_JMGDomain"].ToString().Trim().ToLower() == LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.SoftwareInfo.SDomainName.Trim().ToLower())
- {
- isCurrentStore = true;
- this.cbxStoreList.SelectedItem = itemStore;
- }
- }
- if (!isCurrentStore)
- {
- MessageBoxCustom.Show("没有找到当前门店信息");
- this.cbxStoreList.Items.Clear();
- return;
- }
- }
- }
- else
- {
- ItemValue itemAll = new ItemValue(allValue, "全部");
- this.cbxStoreList.Items.Add(itemAll);
- this.cbxStoreList.SelectedIndex = 0;
- this.cbxStoreList.Hide();
- }
- }
- /// <summary>
- /// 隐藏列
- /// </summary>
- void HideColumn()
- {
- switch (this.QCustomerType)
- {
- case SQueryCustomerType.婚纱客户:
- if (this.SQueryTableName.ToLower() == this.orderCustomerTableName.ToLower())
- {
- SetHideColumn("GregorianCalendar_Birthday,Age_String,Age_Day");
- }
- else {
- SetHideColumn("Age_Day,GregorianCalendar_DayForMarriage");
- }
- break;
- case SQueryCustomerType.儿童客户:
- SetHideColumn("GregorianCalendar_DayForMarriage");
- break;
- case SQueryCustomerType.全部:
- SetHideColumn("GregorianCalendar_Birthday,Age_String,Age_Day,GregorianCalendar_DayForMarriage");
- break;
- default:
- SetHideColumn("Age_Day,GregorianCalendar_DayForMarriage");
- break;
- }
- }
- void SetHideColumn(string hideCloumnList)
- {
- foreach (DataGridViewColumn column in this.dgvCustomerList.Columns)
- {
- if (hideCloumnList.ToLower().Contains(column.Name.ToLower()))
- {
- column.Visible = false;
- }
- else {
- column.Visible = true;
- }
- }
- }
- #endregion
- }
- }
|