FrmScreening.cs 24 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Data;
  5. using System.Drawing;
  6. using System.Linq;
  7. using System.Text;
  8. using System.Windows.Forms;
  9. using System.Globalization;
  10. using System.Collections;
  11. using LYFZ.ComponentLibrary;
  12. namespace LYFZ.Software.MainBusiness.SMSManagement.ShortSmsMessage
  13. {
  14. public partial class FrmScreening : LYFZ.Software.UI.SMSManagement.ShortSmsMessage.FrmScreening
  15. {
  16. private delegate void UpdateControl();
  17. public FrmScreening()
  18. {
  19. this.ucPagerEx1.EventPaging += ucPagerEx1_EventPaging;
  20. this.IsCustomScrollBar = true;
  21. this.Load += FrmScreening_Load;
  22. this.btnSelcet.Click += btnSelcet_Click;
  23. this.btnOk.Click += btnOk_Click;
  24. this.Shown += FrmScreening_Shown;
  25. this.btnHightSelect.Click += btnHightSelect_Click;
  26. this.SQueryTableName = orderCustomerTableName;
  27. this.rdoAll.Click += rdoAll_Click;
  28. this.rdoMan.Click += rdoMan_Click;
  29. this.rdoWoman.Click += rdoWoman_Click;
  30. this.cmbCustomerType.SelectedIndexChanged += cmbCustomerType_SelectedIndexChanged;
  31. this.cmbCustomerType.Click += cmbCustomerType_Click;
  32. this.dgvCustomerList.Sorted += dgvCustomerList_Sorted;
  33. this.tlsAllSelect.Click += tlsAllSelect_Click;
  34. this.tlsFangSelect.Click += tlsFangSelect_Click;
  35. this.tlsAddSelect.Click += tlsAddSelect_Click;
  36. this.btnExport.Click += btnExport_Click;
  37. if (LYFZ.BLL.BLL_ErpUser.GetRights(LYFZ.BLL.BLL_ErpUser.CurrentUserRights.ShortSmsMessageCompetence, CustomAttributes.OperatingAuthority.DataExport))
  38. {
  39. this.btnExport.Enabled = true;
  40. }
  41. else
  42. {
  43. this.btnExport.Enabled = false;
  44. }
  45. CurrentBusinessType = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.GetBusinessType();
  46. bindCmbCustomerType(this.cmbCustomerType);
  47. }
  48. /// <summary>
  49. /// 当前软件业务类型
  50. /// </summary>
  51. LYFZ.Software.MainBusiness.EnumPermissions.BusinessType CurrentBusinessType = EnumPermissions.BusinessType.旗舰版;
  52. public static void bindCmbCustomerType(ComponentLibrary.ComboBoxEx _cmbCustomerType)
  53. {
  54. List<string> customerTypeList = new List<string>();
  55. customerTypeList.AddRange(Enum.GetNames(typeof(SQueryCustomerType)));
  56. switch (LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.GetBusinessType())
  57. {
  58. case EnumPermissions.BusinessType.婚纱版:
  59. customerTypeList.Remove(SQueryCustomerType.儿童客户.ToString());
  60. break;
  61. case EnumPermissions.BusinessType.儿童版:
  62. customerTypeList.Remove(SQueryCustomerType.婚纱客户.ToString());
  63. break;
  64. }
  65. _cmbCustomerType.DataSource = customerTypeList;
  66. _cmbCustomerType.SelectedItem = SQueryCustomerType.全部.ToString();
  67. }
  68. void btnExport_Click(object sender, EventArgs e)
  69. {
  70. this.dgvCustomerList.ExportDataTable();
  71. }
  72. void tlsAddSelect_Click(object sender, EventArgs e)
  73. {
  74. if (this.dgvCustomerList.SelectedRows != null && this.dgvCustomerList.SelectedRows.Count > 0)
  75. {
  76. bool isNullTelephone = false;
  77. this.SelectPhoneNumbers.Clear();
  78. foreach (DataGridViewRow row in this.dgvCustomerList.SelectedRows)
  79. {
  80. if (row.Cells["Cus_Telephone"].Value.ToString().Length >= 11)
  81. {
  82. this.SelectPhoneNumbers.Add(new ItemValue(row.Cells["Cus_Telephone"].Value.ToString(), row.Cells["Cus_Name"].Value.ToString()));
  83. }
  84. else
  85. {
  86. isNullTelephone = true;
  87. }
  88. }
  89. SelectPhoneNumbersMessageBox(isNullTelephone);
  90. }
  91. else {
  92. MessageBoxCustom.Show("请选择客户");
  93. }
  94. }
  95. void tlsFangSelect_Click(object sender, EventArgs e)
  96. {
  97. Unselected();
  98. }
  99. //反选
  100. private void Unselected()
  101. {
  102. if (dgvCustomerList.Rows.Count > 0)
  103. {
  104. for (int i = 0; i < dgvCustomerList.Rows.Count; i++)
  105. {
  106. dgvCustomerList.Rows[i].Selected = !dgvCustomerList.Rows[i].Selected;
  107. }
  108. }
  109. }
  110. void tlsAllSelect_Click(object sender, EventArgs e)
  111. {
  112. this.dgvCustomerList.SelectAll();
  113. }
  114. void dgvCustomerList_Sorted(object sender, EventArgs e)
  115. {
  116. Bind();
  117. }
  118. void cmbCustomerType_Click(object sender, EventArgs e)
  119. {
  120. this.CurrentQueryObject = null;
  121. }
  122. void cmbCustomerType_SelectedIndexChanged(object sender, EventArgs e)
  123. {
  124. this.QCustomerType = (SQueryCustomerType)Enum.Parse(typeof(SQueryCustomerType), this.cmbCustomerType.Text);
  125. this.plCurrentQuerySex.Visible = true;
  126. SetSQueryWhereString();
  127. }
  128. void rdoWoman_Click(object sender, EventArgs e)
  129. {
  130. if (this.CurrentQuerySex.Trim() != "女")
  131. {
  132. this.CurrentQuerySex = "女";
  133. this.SQueryTableName = this.personalCustomerTableName;
  134. Bind();
  135. }
  136. }
  137. void rdoMan_Click(object sender, EventArgs e)
  138. {
  139. if (this.CurrentQuerySex.Trim()!="男")
  140. {
  141. this.CurrentQuerySex = "男";
  142. this.SQueryTableName = this.personalCustomerTableName;
  143. Bind();
  144. }
  145. }
  146. void rdoAll_Click(object sender, EventArgs e)
  147. {
  148. if (this.CurrentQuerySex.Trim().Length > 0)
  149. {
  150. this.CurrentQuerySex = "";
  151. if (this.CurrentQueryObject != null)
  152. {
  153. this.SQueryTableName = this.CurrentQueryObject.SQueryTableName;
  154. }
  155. else {
  156. this.SQueryTableName = this.orderCustomerTableName;
  157. }
  158. Bind();
  159. }
  160. }
  161. string currentQuerySex = "";
  162. /// <summary>
  163. /// 当前查询性别
  164. /// </summary>
  165. public string CurrentQuerySex
  166. {
  167. get { return currentQuerySex; }
  168. set { currentQuerySex = value; }
  169. }
  170. void btnOk_Click(object sender, EventArgs e)
  171. {
  172. GetAllPhoneNumbers();
  173. }
  174. void btnSelcet_Click(object sender, EventArgs e)
  175. {
  176. this.currentQueryObject = null;
  177. SetSQueryWhereString();
  178. Bind();
  179. }
  180. /// <summary>
  181. /// 设置查询条件
  182. /// </summary>
  183. void SetSQueryWhereString()
  184. {
  185. string keyWords = this.txtKeyWords.Text.Trim();
  186. if (keyWords.Length > 0)
  187. {
  188. this.SQueryWhereString = " Ord_Number like '%" + keyWords + "%' "
  189. + " or Cus_Name like '%" + keyWords + "%'"
  190. + " or Cus_Name_py like '%" + keyWords + "%'"
  191. + " or Cus_Telephone like '%" + keyWords + "%'"
  192. + " or Cus_Region like '%" + keyWords + "%'";
  193. }
  194. else {
  195. this.SQueryWhereString = "1=1";
  196. }
  197. this.SQueryTableName = orderCustomerTableName;
  198. }
  199. void FrmScreening_Load(object sender, EventArgs e)
  200. {
  201. }
  202. #region 加载
  203. protected void FrmScreening_Shown(object sender, EventArgs e)
  204. {
  205. //绑定门店
  206. BindStoreList(LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.IsGroupEdition);
  207. try
  208. {
  209. Bind();
  210. }
  211. catch (Exception ex)
  212. {
  213. MessageBoxCustom.Show(ex.Message);
  214. }
  215. }
  216. #endregion
  217. public void Bind()
  218. {
  219. this.ucPagerEx1.PageCurrent = 1;
  220. this.ucPagerEx1.Bind();
  221. HideColumn();
  222. }
  223. LYFZ.Software.MainBusiness.SMSManagement.ShortSmsMessage.FrmHigehrSelect higeSelect = new FrmHigehrSelect();
  224. #region 高级查询
  225. SQueryObject currentQueryObject = null;
  226. /// <summary>
  227. /// 当前查询对象
  228. /// </summary>
  229. public SQueryObject CurrentQueryObject
  230. {
  231. get { return currentQueryObject; }
  232. set { currentQueryObject = value; }
  233. }
  234. protected void btnHightSelect_Click(object sender, EventArgs e)
  235. {
  236. try
  237. {
  238. if (higeSelect.ShowDialog() == System.Windows.Forms.DialogResult.OK)
  239. {
  240. this.QCustomerType = higeSelect.CurrentQueryObject.QCustomerType;
  241. this.cmbCustomerType.SelectedItem = this.QCustomerType.ToString();
  242. this.SQueryTableName = higeSelect.CurrentQueryObject.SQueryTableName;
  243. this.SQueryWhereString = higeSelect.CurrentQueryObject.SQueryWhereString;
  244. this.CurrentQueryObject = higeSelect.CurrentQueryObject;
  245. Bind();
  246. }
  247. }
  248. catch (Exception ex)
  249. {
  250. MessageBoxCustom.Show(ex.Message);
  251. }
  252. }
  253. #endregion
  254. /// <summary>
  255. /// 按订单查询客户的表名
  256. /// </summary>
  257. string orderCustomerTableName = "Vw_OrderCustomerList";
  258. /// <summary>
  259. /// 按人查询客户的表名
  260. /// </summary>
  261. string personalCustomerTableName = "Vw_PersonalCustomerList";
  262. string _SQueryTableName = "";
  263. /// <summary>
  264. /// 查询表名
  265. /// </summary>
  266. public string SQueryTableName
  267. {
  268. get { return _SQueryTableName; }
  269. set { _SQueryTableName = value; }
  270. }
  271. string _SQueryWhereString = "1=1";
  272. /// <summary>
  273. /// 查询条件语句
  274. /// </summary>
  275. public string SQueryWhereString
  276. {
  277. get { return _SQueryWhereString; }
  278. set { _SQueryWhereString = value; }
  279. }
  280. SQueryCustomerType _QCustomerType = SQueryCustomerType.全部;
  281. /// <summary>
  282. /// 查询的客户类型
  283. /// </summary>
  284. public SQueryCustomerType QCustomerType
  285. {
  286. get { return _QCustomerType; }
  287. set { _QCustomerType = value; }
  288. }
  289. List<ItemValue> selectPhoneNumbers = new List<ItemValue>();
  290. /// <summary>
  291. ///
  292. /// </summary>
  293. public List<ItemValue> SelectPhoneNumbers
  294. {
  295. get { return selectPhoneNumbers; }
  296. set { selectPhoneNumbers = value; }
  297. }
  298. #region 画分页
  299. /// <summary>
  300. /// 获取筛选的所有号码
  301. /// </summary>
  302. void GetAllPhoneNumbers()
  303. {
  304. DataTable retTable = new DataTable();
  305. if (this.ucPagerEx1.NMax <= LYFZ.BLL.BLL_SystemGlobalSetting.SysTemGlobalSetMoel.ReportFormPageSize)
  306. {
  307. retTable = this.ucPagerEx1.TbDataSource;
  308. }
  309. else
  310. {
  311. LYFZ.ComponentLibrary.FrmLoadHandling.LoadDoWorkMethod(delegate(object obj, BackgroundWorker backgroundWorker)
  312. {
  313. DataSet da = LYFZ.Helper.SQLHelper.Query("select Cus_Name,Cus_Telephone from " + SQueryTableName + " where (len(Cus_Telephone)>10) and " + getWhereString()); //pageData.QueryDataTable();
  314. retTable = da.Tables[0];
  315. });
  316. }
  317. bool isNullTelephone = false;
  318. this.SelectPhoneNumbers.Clear();
  319. if (retTable.Rows.Count > 0)
  320. {
  321. #region
  322. for (int i = 0; i < retTable.Rows.Count; i++)
  323. {
  324. if (retTable.Rows[i]["Cus_Telephone"].ToString().Length >= 11)
  325. {
  326. this.SelectPhoneNumbers.Add(new ItemValue(retTable.Rows[i]["Cus_Telephone"].ToString(), retTable.Rows[i]["Cus_Name"].ToString()));
  327. }
  328. else {
  329. isNullTelephone = true;
  330. }
  331. }
  332. #endregion
  333. }
  334. SelectPhoneNumbersMessageBox(isNullTelephone);
  335. }
  336. void SelectPhoneNumbersMessageBox(bool isNullTelephone)
  337. {
  338. if (this.SelectPhoneNumbers.Count > 0)
  339. {
  340. if (isNullTelephone)
  341. {
  342. MessageBoxCustom.Show("选择的客户中发现无效手机号已被自动忽略!");
  343. }
  344. this.DialogResult = System.Windows.Forms.DialogResult.OK;
  345. }
  346. else
  347. {
  348. MessageBoxCustom.Show("选择的客户中没有找到有效的手机号!");
  349. }
  350. }
  351. string GetStoreWhere()
  352. {
  353. if (this.cbxStoreList.Items.Count > 0)
  354. {
  355. ItemValue itemStore = (ItemValue)this.cbxStoreList.SelectedItem;
  356. if (itemStore.Value.ToString() != "0")
  357. {
  358. return String.Format("Ord_DividedShop='{0}' and ", itemStore.Value.ToString());
  359. }
  360. }
  361. return "";
  362. }
  363. /// <summary>
  364. /// 获取条件语句
  365. /// </summary>
  366. /// <returns></returns>
  367. string getWhereString()
  368. {
  369. string retWherestr = SQueryWhereString;
  370. if (this.CurrentQuerySex.Trim().Length > 0)
  371. {
  372. if (this.QCustomerType == SQueryCustomerType.全部)
  373. {
  374. retWherestr = "(" + SQueryWhereString + ") and ( Ord_Type<>1 or (Ord_Type=1 and GM_Relation<>'本人')) and Cus_Sex_cs='" + this.CurrentQuerySex.Trim() + "'";
  375. }
  376. else if (this.QCustomerType == SQueryCustomerType.儿童客户)
  377. {
  378. retWherestr = "(" + SQueryWhereString + ") and (Ord_Type=1 and GM_Relation<>'本人') and Cus_Sex_cs='" + this.CurrentQuerySex.Trim() + "'";
  379. }
  380. else {
  381. retWherestr = "(" + SQueryWhereString + ") and Cus_Sex_cs='" + this.CurrentQuerySex.Trim() + "'";
  382. }
  383. }
  384. if (!SQueryWhereString.ToLower().Contains("Ord_Type="))
  385. {
  386. switch (this.QCustomerType)
  387. {
  388. case SQueryCustomerType.婚纱客户:
  389. retWherestr = "(" + retWherestr + ") and Ord_Type='0' ";
  390. break;
  391. case SQueryCustomerType.儿童客户:
  392. retWherestr = "(" + retWherestr + ") and Ord_Type='1' ";
  393. break;
  394. case SQueryCustomerType.写真客户:
  395. retWherestr = "(" + retWherestr + ") and (Ord_Type='2')";
  396. break;
  397. case SQueryCustomerType.其它客户:
  398. retWherestr = "(" + retWherestr + ") and (Ord_Type='3')";
  399. break;
  400. }
  401. }
  402. return GetStoreWhere()+"("+retWherestr+")";
  403. }
  404. /// <summary>
  405. /// 画分页
  406. /// </summary>
  407. /// <param name="e"></param>
  408. /// <returns></returns>
  409. private int ucPagerEx1_EventPaging(UCPager.EventPagingArg e)
  410. {
  411. LYFZ.UCPager.PageData pageData = new LYFZ.UCPager.PageData();
  412. pageData.TableName = SQueryTableName;
  413. pageData.PageIndex = this.ucPagerEx1.PageCurrent;
  414. pageData.PageSize = LYFZ.BLL.BLL_SystemGlobalSetting.SysTemGlobalSetMoel.ReportFormPageSize;
  415. this.ucPagerEx1.PageSize = pageData.PageSize;
  416. pageData.QueryCondition = getWhereString();
  417. pageData.QueryFieldName = "id"
  418. +",Ord_Number"
  419. +",Ord_Type"
  420. +",Ord_Type_CH"
  421. +",Cus_Name"
  422. +",Cus_Telephone"
  423. +",Cus_Sex_cs"
  424. +",Cus_Region"
  425. +",GregorianCalendar_Birthday"
  426. +",Age_String"
  427. +",Age_Day"
  428. +",GregorianCalendar_DayForMarriage"
  429. +",Ord_PhotographyCategory"
  430. +",Ord_SeriesName"
  431. +",Ord_SeriesPrice"
  432. +",yingFuPrice"
  433. +",Ord_OrderClass"
  434. +",Ord_CustomerSource"
  435. +",Ord_CreateDateTime";
  436. pageData.OrderStr = " ID desc ";
  437. LYFZ.ComponentLibrary.DataGridViewEx.SortedColumnModel sortModel
  438. = this.dgvCustomerList.GetSortedColumnModel("Ord_CreateDateTime", ListSortDirection.Descending);
  439. pageData.OrderStr = sortModel.OrderStr.TrimStart();
  440. dgvCustomerList.Rows.Clear();
  441. DataTable dt = null;
  442. LYFZ.ComponentLibrary.FrmLoadHandling.LoadDoWorkMethod(delegate(object obj, BackgroundWorker backgroundWorker)
  443. {
  444. dt = pageData.QueryDataTable().Tables[0];
  445. });
  446. if (dt != null)
  447. {
  448. if (dt.Rows.Count > 0)
  449. {
  450. try
  451. {
  452. this.ucPagerEx1.TbDataSource = dt;
  453. }
  454. catch { }
  455. #region
  456. for (int i = 0; i < dt.Rows.Count; i++)
  457. {
  458. DataGridViewRow row = new DataGridViewRow();
  459. row.CreateCells(this.dgvCustomerList);
  460. row.Cells[0].Value = dt.Rows[i]["Ord_Number"].ToString();
  461. row.Cells[1].Value = dt.Rows[i]["Ord_Type_CH"].ToString();
  462. row.Cells[2].Value = dt.Rows[i]["Cus_Name"].ToString();
  463. row.Cells[3].Value = dt.Rows[i]["Cus_Telephone"].ToString();
  464. row.Cells[4].Value = dt.Rows[i]["Cus_Sex_cs"].ToString();
  465. row.Cells[5].Value = dt.Rows[i]["Cus_Region"].ToString();
  466. DateTime birthday = LYFZ.WinAPI.CustomPublicMethod.GetNullDateTime();
  467. DateTime.TryParse(dt.Rows[i]["GregorianCalendar_Birthday"].ToString(), out birthday);
  468. if (birthday > LYFZ.WinAPI.CustomPublicMethod.GetNullDateTime())
  469. {
  470. row.Cells[6].Value = birthday.ToString("yyyy-MM-dd");
  471. }
  472. row.Cells[7].Value = dt.Rows[i]["Age_String"].ToString();
  473. row.Cells[8].Value = dt.Rows[i]["Age_Day"].ToString();
  474. DateTime dayForMarriage = LYFZ.WinAPI.CustomPublicMethod.GetNullDateTime();
  475. DateTime.TryParse(dt.Rows[i]["GregorianCalendar_DayForMarriage"].ToString(), out dayForMarriage);
  476. if (dayForMarriage > LYFZ.WinAPI.CustomPublicMethod.GetNullDateTime())
  477. {
  478. row.Cells[9].Value = dayForMarriage.ToString("yyyy-MM-dd");
  479. }
  480. row.Cells[10].Value = dt.Rows[i]["Ord_PhotographyCategory"].ToString();
  481. row.Cells[11].Value = dt.Rows[i]["Ord_SeriesName"].ToString();
  482. row.Cells[12].Value = dt.Rows[i]["Ord_SeriesPrice"].ToString();
  483. row.Cells[13].Value = dt.Rows[i]["yingFuPrice"].ToString();
  484. row.Cells[14].Value = dt.Rows[i]["Ord_OrderClass"].ToString();
  485. row.Cells[15].Value = dt.Rows[i]["Ord_CustomerSource"].ToString();
  486. row.Cells[16].Value = dt.Rows[i]["Ord_CreateDateTime"].ToString();
  487. this.dgvCustomerList.Rows.Add(row);
  488. }
  489. #endregion
  490. }
  491. }
  492. return pageData.TotalCount;
  493. }
  494. /// <summary>
  495. /// 邦定门店
  496. /// </summary>
  497. void BindStoreList(bool isGroupEdition)
  498. {
  499. DataRowCollection rows = null;
  500. int allValue = 0;
  501. if (isGroupEdition)
  502. {
  503. this.cbxStoreList.Show();
  504. LYFZ.ComponentLibrary.FrmLoadHandling.LoadDoWorkMethod(delegate (object obj, BackgroundWorker backgroundWorker)
  505. {
  506. rows = LYFZ.DAL.DAL_ErpCompanyInfo.GetCompanyBasicInfoList(LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.SoftwareInfo.SDomainName.Trim());
  507. });
  508. if (rows == null)
  509. {
  510. MessageBoxCustom.Show("获取门店信息失败!");
  511. return;
  512. }
  513. else
  514. {
  515. if (rows.Count > 1)
  516. {
  517. ItemValue itemAll = new ItemValue(allValue, "全部");
  518. this.cbxStoreList.Items.Add(itemAll);
  519. this.cbxStoreList.SelectedIndex = 0;
  520. }
  521. //是否找到当前店
  522. bool isCurrentStore = false;
  523. foreach (DataRow row in rows)
  524. {
  525. ItemValue itemStore = new ItemValue(row["Company_DividedShop"].ToString(), row["Company_Name"].ToString());
  526. itemStore.Tag = row;
  527. this.cbxStoreList.Items.Add(itemStore);
  528. if (row["Company_JMGDomain"].ToString().Trim().ToLower() == LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.SoftwareInfo.SDomainName.Trim().ToLower())
  529. {
  530. isCurrentStore = true;
  531. this.cbxStoreList.SelectedItem = itemStore;
  532. }
  533. }
  534. if (!isCurrentStore)
  535. {
  536. MessageBoxCustom.Show("没有找到当前门店信息");
  537. this.cbxStoreList.Items.Clear();
  538. return;
  539. }
  540. }
  541. }
  542. else
  543. {
  544. ItemValue itemAll = new ItemValue(allValue, "全部");
  545. this.cbxStoreList.Items.Add(itemAll);
  546. this.cbxStoreList.SelectedIndex = 0;
  547. this.cbxStoreList.Hide();
  548. }
  549. }
  550. /// <summary>
  551. /// 隐藏列
  552. /// </summary>
  553. void HideColumn()
  554. {
  555. switch (this.QCustomerType)
  556. {
  557. case SQueryCustomerType.婚纱客户:
  558. if (this.SQueryTableName.ToLower() == this.orderCustomerTableName.ToLower())
  559. {
  560. SetHideColumn("GregorianCalendar_Birthday,Age_String,Age_Day");
  561. }
  562. else {
  563. SetHideColumn("Age_Day,GregorianCalendar_DayForMarriage");
  564. }
  565. break;
  566. case SQueryCustomerType.儿童客户:
  567. SetHideColumn("GregorianCalendar_DayForMarriage");
  568. break;
  569. case SQueryCustomerType.全部:
  570. SetHideColumn("GregorianCalendar_Birthday,Age_String,Age_Day,GregorianCalendar_DayForMarriage");
  571. break;
  572. default:
  573. SetHideColumn("Age_Day,GregorianCalendar_DayForMarriage");
  574. break;
  575. }
  576. }
  577. void SetHideColumn(string hideCloumnList)
  578. {
  579. foreach (DataGridViewColumn column in this.dgvCustomerList.Columns)
  580. {
  581. if (hideCloumnList.ToLower().Contains(column.Name.ToLower()))
  582. {
  583. column.Visible = false;
  584. }
  585. else {
  586. column.Visible = true;
  587. }
  588. }
  589. }
  590. #endregion
  591. }
  592. }