FrmHigehrSelect.cs 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542
  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. namespace LYFZ.Software.MainBusiness.SMSManagement.ShortSmsMessage
  10. {
  11. public partial class FrmHigehrSelect : LYFZ.Software.UI.SMSManagement.ShortSmsMessage.FrmHigehrSelect
  12. {
  13. public FrmHigehrSelect()
  14. {
  15. this.Shown += FrmHigehrSelect_Shown;
  16. this.btnOk.Click += btnOk_Click;
  17. this.btnCanle.Click += btnCanle_Click;
  18. this.rdoAll.Click += rdoAll_Click;
  19. this.rdoHunsa.Click += rdoHunsa_Click;
  20. this.rdoErtong.Click += rdoErtong_Click;
  21. this.rdoXiezheng.Click += rdoXiezheng_Click;
  22. this.rdoqita.Click += rdoqita_Click;
  23. BindCategory();
  24. SetGrpEnabled(-1);
  25. this.rdoanshenri.Click += rdoanshenri_Click;
  26. this.rdoanhungqi.Click += rdoanhungqi_Click;
  27. CurrentBusinessType = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.GetBusinessType();
  28. SetShowSmsTpye();
  29. }
  30. /// <summary>
  31. /// 当前软件业务类型
  32. /// </summary>
  33. LYFZ.Software.MainBusiness.EnumPermissions.BusinessType CurrentBusinessType = EnumPermissions.BusinessType.旗舰版;
  34. /// <summary>
  35. /// 根据软件业务版本设置显示客户类型
  36. /// </summary>
  37. void SetShowSmsTpye()
  38. {
  39. switch (CurrentBusinessType)
  40. {
  41. case EnumPermissions.BusinessType.婚纱版:
  42. this.rdoErtong.Visible = false;
  43. break;
  44. case EnumPermissions.BusinessType.儿童版:
  45. this.rdoHunsa.Visible = false;
  46. break;
  47. }
  48. }
  49. void rdoanhungqi_Click(object sender, EventArgs e)
  50. {
  51. this.grpNianLing.Enabled = false;
  52. this.numShuiA.Value=0;
  53. this.numShuiZ.Value=0;
  54. this.numTianA.Value = 0;
  55. this.numTianZ.Value = 0;
  56. }
  57. void rdoanshenri_Click(object sender, EventArgs e)
  58. {
  59. this.grpNianLing.Enabled = true;
  60. }
  61. SQueryObject currentQueryObject = new SQueryObject();
  62. /// <summary>
  63. /// 当前查询对象
  64. /// </summary>
  65. public SQueryObject CurrentQueryObject
  66. {
  67. get { return currentQueryObject; }
  68. set { currentQueryObject = value; }
  69. }
  70. void rdoqita_Click(object sender, EventArgs e)
  71. {
  72. SetGrpEnabled(Convert.ToInt32(rdoqita.Tag));
  73. }
  74. void rdoXiezheng_Click(object sender, EventArgs e)
  75. {
  76. SetGrpEnabled(Convert.ToInt32(rdoXiezheng.Tag));
  77. }
  78. void rdoErtong_Click(object sender, EventArgs e)
  79. {
  80. SetGrpEnabled(Convert.ToInt32(rdoErtong.Tag));
  81. }
  82. void rdoHunsa_Click(object sender, EventArgs e)
  83. {
  84. SetGrpEnabled(Convert.ToInt32(rdoHunsa.Tag));
  85. }
  86. void rdoAll_Click(object sender, EventArgs e)
  87. {
  88. SetGrpEnabled(Convert.ToInt32(rdoAll.Tag));
  89. }
  90. void SetGrpEnabled(int type) {
  91. if (type < 0)
  92. {
  93. this.grpJilianri.Enabled = false;
  94. this.grpNianLing.Enabled = false;
  95. this.rdoanhungqi.Visible = false;
  96. this.cmbAnhungqi.Visible = false;
  97. this.numShuiA.Value = 0;
  98. this.numShuiZ.Value = 0;
  99. this.numTianA.Value = 0;
  100. this.numTianZ.Value = 0;
  101. this.cmbAnshenri.SelectedItem = PressMemorialDay.不限.ToString();
  102. this.cmbAnhungqi.SelectedItem = PressMemorialDay.不限.ToString();
  103. }
  104. else {
  105. this.grpJilianri.Enabled = true;
  106. this.grpNianLing.Enabled = true;
  107. if (type == 0)
  108. {
  109. this.rdoanhungqi.Visible = true;
  110. this.cmbAnhungqi.Visible = true;
  111. }
  112. else {
  113. this.rdoanhungqi.Visible = false;
  114. this.cmbAnhungqi.Visible = false;
  115. }
  116. }
  117. this.CurrentQueryObject.QCustomerType = (SQueryCustomerType)type;
  118. if (this.CurrentQueryObject.QCustomerType != SQueryCustomerType.婚纱客户)
  119. {
  120. this.rdoanshenri.Checked = true;
  121. this.cmbAnhungqi.SelectedItem = PressMemorialDay.不限.ToString();
  122. }
  123. }
  124. public string Pak_PackagesClass;
  125. public string Price1;
  126. public string Price2;
  127. LYFZ.BLL.BLL_ErpSystemCategory scbll = new BLL.BLL_ErpSystemCategory();
  128. void BindCategory()
  129. {
  130. try
  131. {
  132. #region 套系类别
  133. LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.BindComboBoxTreeView_PackagesCategoryAndName(this.CtvPak_PackagesClass, "AAAAAAB", true);
  134. this.CtvPak_PackagesClass.IsSelectParentNode = true;
  135. #endregion
  136. #region 订单类别
  137. LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.BindComboBoxTreeView_SystemCategory("BFAGAHBFDGCABAJIH", this.cmbtreevOrdeClass, true);
  138. this.cmbtreevOrdeClass.IsSelectParentNode = true;
  139. #endregion
  140. #region 客户来源
  141. LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.BindComboBoxTreeView_SystemCategory("AAAAAAF", this.cmbtreevCustomerSource, true);
  142. this.cmbtreevCustomerSource.IsSelectParentNode = true;
  143. #endregion
  144. #region 客户地区
  145. DataTable tbl = new DataTable();
  146. tbl = scbll.GetList(" Sc_ClassParentID = '" + scbll.GetList("Sc_ClassCode='AAAAAAC'").Tables[0].Rows[0]["ID"].ToString().Trim() + "'").Tables[0];
  147. this.cmbCus_Region.Items.Add("");
  148. if (tbl.Rows.Count > 0)
  149. {
  150. for (int i = 0; i < tbl.Rows.Count; i++)
  151. {
  152. this.cmbCus_Region.Items.Add(tbl.Rows[i]["Sc_ClassName"].ToString().Trim());
  153. }
  154. }
  155. #endregion
  156. this.cmbAnshenri.DataSource = Enum.GetNames(typeof(PressMemorialDay));
  157. this.cmbAnhungqi.DataSource = Enum.GetNames(typeof(PressMemorialDay));
  158. }
  159. catch (Exception ex)
  160. {
  161. MessageBoxCustom.Show(ex.Message);
  162. }
  163. }
  164. #region 加载
  165. protected void FrmHigehrSelect_Shown(object sender, EventArgs e)
  166. {
  167. }
  168. #endregion
  169. #region 取消
  170. protected void btnCanle_Click(object sender, EventArgs e)
  171. {
  172. this.Close();
  173. }
  174. #endregion
  175. /// <summary>
  176. /// 获取查询表名
  177. /// </summary>
  178. /// <returns></returns>
  179. string GetSQueryTableName()
  180. {
  181. string tableName = "Vw_OrderCustomerList";//Vw_PersonalCustomerList
  182. if (this.grpJilianri.Enabled)
  183. {
  184. if (this.CurrentQueryObject.QCustomerType == SQueryCustomerType.婚纱客户
  185. || this.CurrentQueryObject.QCustomerType == SQueryCustomerType.写真客户
  186. || this.CurrentQueryObject.QCustomerType == SQueryCustomerType.其它客户)
  187. {
  188. if (
  189. (this.rdoanshenri.Checked && GetPressMemorialDay(this.cmbAnshenri.Text) != PressMemorialDay.不限)
  190. || (this.rdoanshui.Checked && this.numShuiZ.Value > 0 && this.numShuiA.Value <= this.numShuiZ.Value)
  191. || (this.rdoantian.Checked && this.numTianZ.Value > 0 && this.numTianA.Value <= this.numTianZ.Value)
  192. || this.cmbCus_Region.Text.Trim().Length>0
  193. )
  194. {
  195. tableName = "Vw_PersonalCustomerList";
  196. }
  197. }
  198. }
  199. return tableName;
  200. }
  201. /// <summary>
  202. /// 获取查询条件语句
  203. /// </summary>
  204. /// <returns></returns>
  205. string GetQueryWhereString()
  206. {
  207. string retWhereString = "1=1 ";
  208. //套系类别
  209. string Ord_PhotographyCategory = GetPackagesClass(this.CtvPak_PackagesClass.TreeView.SelectedNode);
  210. //套系名称
  211. string Ord_SeriesName = GetPackagesName(this.CtvPak_PackagesClass.TreeView.SelectedNode);
  212. //订单类别
  213. string Ord_OrderClass = GetTreeNodeAllNode(this.cmbtreevOrdeClass.TreeView.SelectedNode);
  214. //客户来源
  215. string Ord_CustomerSource = GetTreeNodeAllNode(this.cmbtreevCustomerSource.TreeView.SelectedNode);
  216. if (Ord_PhotographyCategory.Trim().Length > 0)
  217. {
  218. retWhereString += " and (Ord_PhotographyCategory='" + Ord_PhotographyCategory.Replace(",", "' or Ord_PhotographyCategory = '") + "')";
  219. }
  220. if (Ord_SeriesName.Trim().Length > 0)
  221. {
  222. retWhereString += " and (Ord_SeriesName='" + Ord_SeriesName.Trim() + "')";
  223. }
  224. if (Ord_OrderClass.Trim().Length > 0)
  225. {
  226. retWhereString += " and (Ord_OrderClass='" + Ord_OrderClass.Replace(",", "' or Ord_OrderClass = '") + "')";
  227. }
  228. if (Ord_CustomerSource.Trim().Length > 0)
  229. {
  230. retWhereString += " and (Ord_CustomerSource='" + Ord_CustomerSource.Replace(",", "' or Ord_CustomerSource = '") + "')";
  231. }
  232. switch (this.CurrentQueryObject.QCustomerType)
  233. {
  234. case SQueryCustomerType.婚纱客户:
  235. retWhereString += " and Ord_Type='0' ";
  236. break;
  237. case SQueryCustomerType.儿童客户:
  238. retWhereString += " and Ord_Type='1' ";
  239. break;
  240. case SQueryCustomerType.写真客户:
  241. retWhereString += " and (Ord_Type='2')";
  242. break;
  243. case SQueryCustomerType.其它客户:
  244. retWhereString += " and (Ord_Type='3')";
  245. break;
  246. }
  247. if (this.cmbCus_Region.Text.Trim().Length > 0)
  248. {
  249. retWhereString += " and (Cus_Region like '%" + this.cmbCus_Region.Text.Trim() + "%')";
  250. }
  251. //消费金额 yingFuPrice
  252. // int yingFuPrice = this.numTaoxijiageA.Value;
  253. if (this.numTaoxijiageZ.Value > 0 && this.numTaoxijiageA.Value <= this.numTaoxijiageZ.Value)
  254. {
  255. retWhereString += " and (yingFuPrice>=" +Convert.ToInt32(this.numTaoxijiageA.Value).ToString() + " and yingFuPrice<=" + Convert.ToInt32(this.numTaoxijiageZ.Value).ToString() + ") ";
  256. }
  257. //预约时间的起始时间
  258. DateTime appointmentTimeA = LYFZ.WinAPI.CustomPublicMethod.GetNullDateTime();
  259. //预约时间的结束时间
  260. DateTime appointmentTimeZ = LYFZ.WinAPI.CustomPublicMethod.GetNullDateTime();
  261. DateTime.TryParse(this.txtyuyueshijianA.Text.Trim(), out appointmentTimeA);
  262. DateTime.TryParse(this.txtyuyueshijianZ.Text.Trim(), out appointmentTimeZ);
  263. if (appointmentTimeZ>LYFZ.WinAPI.CustomPublicMethod.GetNullDateTime()&&appointmentTimeA <= appointmentTimeZ)
  264. {
  265. retWhereString += " and (Ord_CreateDateTime>='" + appointmentTimeA.ToString("yyyy-MM-dd") + "' and Ord_CreateDateTime<='" + appointmentTimeZ.ToString("yyyy-MM-dd") + "') ";
  266. }
  267. if (this.grpJilianri.Enabled)
  268. {
  269. PressMemorialDay anShenri=(PressMemorialDay)Enum.Parse(typeof(PressMemorialDay),this.cmbAnshenri.Text);
  270. int day = (int)anShenri;
  271. if (this.rdoanshenri.Checked && anShenri!= PressMemorialDay.不限)
  272. {
  273. if (anShenri == PressMemorialDay.今天)
  274. {
  275. retWhereString += " and GregorianCalendar_NowYearBirthday ='" + SDateTime.Now.ToString("yyyy-MM-dd") + "' ";
  276. }
  277. else {
  278. retWhereString += " and (GregorianCalendar_NowYearBirthday >='" + SDateTime.Now.ToString("yyyy-MM-dd") + "' and GregorianCalendar_NowYearBirthday<='" + SDateTime.Now.AddDays(day).ToString("yyyy-MM-dd") + "') ";
  279. }
  280. }
  281. PressMemorialDay anHunQi = (PressMemorialDay)Enum.Parse(typeof(PressMemorialDay), this.cmbAnhungqi.Text);
  282. int hqiday = (int)anHunQi;
  283. if (this.rdoanhungqi.Checked && this.rdoanhungqi.Visible && anHunQi != PressMemorialDay.不限)
  284. {
  285. if (anHunQi == PressMemorialDay.今天)
  286. {
  287. retWhereString += " and GregorianCalendar_NowYearDayForMarriage ='" + SDateTime.Now.ToString("yyyy-MM-dd") + "' ";
  288. }
  289. else
  290. {
  291. retWhereString += " and (GregorianCalendar_NowYearDayForMarriage >='" + SDateTime.Now.ToString("yyyy-MM-dd") + "' and GregorianCalendar_NowYearDayForMarriage<='" + SDateTime.Now.AddDays(hqiday).ToString("yyyy-MM-dd") + "') ";
  292. }
  293. }
  294. }
  295. if (this.grpNianLing.Enabled)
  296. {
  297. if (this.rdoanshui.Checked && this.numShuiZ.Value > 0 && this.numShuiA.Value <= this.numShuiZ.Value)
  298. {
  299. retWhereString += " and (Age_Year>=" + Convert.ToInt32(this.numShuiA.Value).ToString() + " and Age_Year<=" + Convert.ToInt32(this.numShuiZ.Value).ToString() + ") ";
  300. }
  301. else if (this.rdoantian.Checked && this.numTianZ.Value > 0 && this.numTianA.Value <= this.numTianZ.Value)
  302. {
  303. retWhereString += " and (Age_Day>=" + Convert.ToInt32(this.numTianA.Value).ToString() + " and Age_Day<=" + Convert.ToInt32(this.numTianZ.Value).ToString() + ") ";
  304. }
  305. }
  306. return retWhereString;
  307. }
  308. /// <summary>
  309. /// 获取当前节点和所有子节点值
  310. /// </summary>
  311. /// <param name="node"></param>
  312. /// <returns></returns>
  313. string GetTreeNodeAllNode(TreeNode node)
  314. {
  315. string ret = "";
  316. if (node != null)
  317. {
  318. ret = node.Text.Trim();
  319. if (node.Nodes.Count > 0)
  320. {
  321. foreach (TreeNode n in node.Nodes)
  322. {
  323. ret += "," + GetPackagesClass(n);
  324. }
  325. }
  326. }
  327. return ret.Trim().Trim(',');
  328. }
  329. /// <summary>
  330. /// 获取套系类别
  331. /// </summary>
  332. /// <returns></returns>
  333. string GetPackagesClass(TreeNode node)
  334. {
  335. string ret = "";
  336. if (node != null)
  337. {
  338. if (node.Name.Trim() == "true")
  339. {
  340. ret = node.Text.Trim();
  341. if (node.Nodes.Count > 0)
  342. {
  343. foreach (TreeNode n in node.Nodes)
  344. {
  345. if (n.Name.Trim() == "true")
  346. ret += "," + GetPackagesClass(n);
  347. }
  348. }
  349. }
  350. }
  351. return ret.Trim().Trim(',');
  352. }
  353. /// <summary>
  354. /// 获取套系名称
  355. /// </summary>
  356. /// <returns></returns>
  357. string GetPackagesName(TreeNode node)
  358. {
  359. string ret = "";
  360. if (node != null)
  361. {
  362. if (node.Name.Trim() != "true")
  363. {
  364. ret = node.Text.Trim();
  365. }
  366. }
  367. return ret.Trim();
  368. }
  369. /// <summary>
  370. /// 获取纪念日
  371. /// </summary>
  372. /// <param name="text"></param>
  373. /// <returns></returns>
  374. PressMemorialDay GetPressMemorialDay(string text)
  375. {
  376. return (PressMemorialDay)Enum.Parse(typeof(PressMemorialDay), text);
  377. }
  378. #region 确定
  379. protected void btnOk_Click(object sender, EventArgs e)
  380. {
  381. // this.CurrentQueryObject(Vw_OrderCustomerList)
  382. if (this.numTaoxijiageA.Value > this.numTaoxijiageZ.Value)
  383. {
  384. MessageBoxCustom.Show("消费金额的起始值不能大于结束值");
  385. return;
  386. }
  387. //预约时间的起始时间
  388. DateTime appointmentTimeA=LYFZ.WinAPI.CustomPublicMethod.GetNullDateTime();
  389. //预约时间的结束时间
  390. DateTime appointmentTimeZ = LYFZ.WinAPI.CustomPublicMethod.GetNullDateTime();
  391. if (this.txtyuyueshijianA.Text.Trim().Length>0&&!DateTime.TryParse(this.txtyuyueshijianA.Text.Trim(), out appointmentTimeA))
  392. {
  393. MessageBoxCustom.Show("预约时间的起始时间格式不正确");
  394. return;
  395. }
  396. if (this.txtyuyueshijianZ.Text.Trim().Length > 0 && !DateTime.TryParse(this.txtyuyueshijianZ.Text.Trim(), out appointmentTimeZ))
  397. {
  398. MessageBoxCustom.Show("预约时间的结束时间格式不正确");
  399. return;
  400. }
  401. if (appointmentTimeA > appointmentTimeZ)
  402. {
  403. MessageBoxCustom.Show("预约时间的起始时间不能大于结束时间");
  404. return;
  405. }
  406. if (this.grpNianLing.Enabled)
  407. {
  408. if (this.rdoanshui.Checked)
  409. {
  410. if (this.numShuiA.Value > this.numShuiZ.Value)
  411. {
  412. MessageBoxCustom.Show("年龄起始值不能大于结束值");
  413. return;
  414. }
  415. }
  416. else if (this.rdoantian.Checked)
  417. {
  418. if (this.numTianA.Value > this.numTianA.Value)
  419. {
  420. MessageBoxCustom.Show("起始天数不能大于结束天数");
  421. return;
  422. }
  423. }
  424. }
  425. this.CurrentQueryObject.SQueryTableName = GetSQueryTableName();
  426. this.CurrentQueryObject.SQueryWhereString = GetQueryWhereString();
  427. // MessageBoxCustom.Show(this.CurrentQueryObject.SQueryWhereString);
  428. this.DialogResult = System.Windows.Forms.DialogResult.OK;
  429. }
  430. #endregion
  431. }
  432. /// <summary>
  433. /// 按纪念日
  434. /// </summary>
  435. public enum PressMemorialDay
  436. {
  437. 不限=-1,
  438. 今天=0,
  439. 近两天=2,
  440. 近三天 = 3,
  441. 近五天 = 5,
  442. 近七天 = 7,
  443. 近十天 = 10,
  444. 近十五天 = 15,
  445. 近一个月 = 30,
  446. 近三个月 = 90,
  447. 近半年 = 180,
  448. }
  449. /// <summary>
  450. /// 查询客户类型
  451. /// </summary>
  452. public enum SQueryCustomerType
  453. {
  454. 全部=-1,
  455. 婚纱客户=0,
  456. 儿童客户=1,
  457. 写真客户=2,
  458. 其它客户 = 3
  459. }
  460. /// <summary>
  461. /// 查询对象
  462. /// </summary>
  463. public class SQueryObject
  464. {
  465. public SQueryObject() {
  466. }
  467. string _SQueryTableName = "";
  468. /// <summary>
  469. /// 查询表名
  470. /// </summary>
  471. public string SQueryTableName
  472. {
  473. get { return _SQueryTableName; }
  474. set { _SQueryTableName = value; }
  475. }
  476. string _SQueryWhereString = "";
  477. /// <summary>
  478. /// 查询条件语句
  479. /// </summary>
  480. public string SQueryWhereString
  481. {
  482. get { return _SQueryWhereString; }
  483. set { _SQueryWhereString = value; }
  484. }
  485. SQueryCustomerType _QCustomerType = SQueryCustomerType.全部;
  486. /// <summary>
  487. /// 查询的客户类型
  488. /// </summary>
  489. public SQueryCustomerType QCustomerType
  490. {
  491. get { return _QCustomerType; }
  492. set { _QCustomerType = value; }
  493. }
  494. }
  495. }