ConditionQuerySamllForm.cs 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136
  1. using System;
  2. using System.Collections;
  3. using System.Collections.Generic;
  4. using System.ComponentModel;
  5. using System.Data;
  6. using System.Drawing;
  7. using System.Linq;
  8. using System.Text;
  9. using System.Windows.Forms;
  10. namespace LYFZ.Software.MainBusiness.Customers.SetSmallForm
  11. {
  12. public partial class ConditionQuerySamllForm : LYFZ.Software.UI.Customers.SetSmallForm.ConditionQuerySamllForm
  13. {
  14. public ConditionQuerySamllForm()
  15. {
  16. this.Shown += ConditionQuerySamllForm_Shown;
  17. this.txtAgesEnd.KeyPress += txtAgesEnd_KeyPress;
  18. this.txtAgesStart.KeyPress += txtAgesStart_KeyPress;
  19. this.chkAgesGrow.Click += chkAgesGrow_Click;
  20. this.chkAgesOrder.Click += chkAgesOrder_Click;
  21. this.btnOK.Click += btnOK_Click;
  22. this.btnCanael.Click += btnCanael_Click;
  23. }
  24. public bool IsSaveed = false;
  25. public string StrLoadType = "";
  26. public Hashtable htData = new Hashtable();
  27. /// <summary>
  28. /// 窗体加载事件
  29. /// </summary>
  30. /// <param name="sender"></param>
  31. /// <param name="e"></param>
  32. void ConditionQuerySamllForm_Shown(object sender, EventArgs e)
  33. {
  34. if (this.StrLoadType == "1" || string.IsNullOrEmpty(this.StrLoadType))
  35. {
  36. TreeNode root = new TreeNode();
  37. root.Text = "岁";
  38. root.Tag = "Age_Year";
  39. root.Name = "Age_Year";
  40. this.cmbtreevAge.Nodes.Add(root);
  41. root = new TreeNode();
  42. root.Text = "天";
  43. root.Tag = "Age_Day";
  44. root.Name = "Age_Day";
  45. this.cmbtreevAge.Nodes.Add(root);
  46. this.cmbtreevAge.TextFindTag("天");
  47. }
  48. else
  49. { this.panelAges.Visible = false; }
  50. LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.BindComboBoxTreeView_ClientRelation("AAAAAAC", this.cmbtreevRegion, IsFirstNodeNull: true);
  51. }
  52. /// <summary>
  53. /// 结束年龄输入限制
  54. /// </summary>
  55. /// <param name="sender"></param>
  56. /// <param name="e"></param>
  57. void txtAgesEnd_KeyPress(object sender, KeyPressEventArgs e)
  58. {
  59. if (!Char.IsNumber(e.KeyChar) && !Char.IsControl(e.KeyChar))
  60. { e.Handled = true; }
  61. }
  62. /// <summary>
  63. /// 开始年龄输入限制
  64. /// </summary>
  65. /// <param name="sender"></param>
  66. /// <param name="e"></param>
  67. void txtAgesStart_KeyPress(object sender, KeyPressEventArgs e)
  68. {
  69. if (!Char.IsNumber(e.KeyChar) && !Char.IsControl(e.KeyChar))
  70. { e.Handled = true; }
  71. }
  72. /// <summary>
  73. /// 按成长年龄点击
  74. /// </summary>
  75. /// <param name="sender"></param>
  76. /// <param name="e"></param>
  77. void chkAgesGrow_Click(object sender, EventArgs e)
  78. {
  79. this.chkAgesGrow.Checked = true;
  80. this.chkAgesOrder.Checked = false;
  81. }
  82. /// <summary>
  83. /// 按订单年龄点击
  84. /// </summary>
  85. /// <param name="sender"></param>
  86. /// <param name="e"></param>
  87. void chkAgesOrder_Click(object sender, EventArgs e)
  88. {
  89. this.chkAgesOrder.Checked = true;
  90. this.chkAgesGrow.Checked = false;
  91. }
  92. /// <summary>
  93. /// 确定
  94. /// </summary>
  95. /// <param name="sender"></param>
  96. /// <param name="e"></param>
  97. void btnOK_Click(object sender, EventArgs e)
  98. {
  99. if (!string.IsNullOrEmpty(this.cmbtreevRegion.Text.Trim()))
  100. { htData["ClientRegion"] = this.cmbtreevRegion.Text.Trim(); }
  101. if (!string.IsNullOrEmpty(this.txtAgesStart.Text.Trim()))
  102. { htData["AgesStart"] = this.txtAgesStart.Text.Trim(); }
  103. if (!string.IsNullOrEmpty(this.txtAgesEnd.Text.Trim()))
  104. { htData["AgesEnd"] = this.txtAgesEnd.Text.Trim(); }
  105. if (this.chkAgesOrder.Checked)
  106. { htData["AgesType"] = "Order"; }
  107. if (this.chkAgesGrow.Checked)
  108. { htData["AgesType"] = "Grow"; }
  109. if (!string.IsNullOrEmpty(this.txtAgesStart.Text.Trim()) || !string.IsNullOrEmpty(this.txtAgesEnd.Text.Trim()))
  110. {
  111. if (this.cmbtreevAge.Text.Trim() == "")
  112. { MessageBoxCustom.Show("年龄未选择是按岁查还是按天查"); return; }
  113. htData["GrowAges"] = this.cmbtreevAge.Tag.ToString().Trim();
  114. htData["OrderAges"] = this.cmbtreevAge.Text.Trim();
  115. }
  116. this.IsSaveed = true;
  117. this.Close();
  118. }
  119. /// <summary>
  120. /// 取消
  121. /// </summary>
  122. /// <param name="sender"></param>
  123. /// <param name="e"></param>
  124. void btnCanael_Click(object sender, EventArgs e)
  125. {
  126. this.Close();
  127. }
  128. }
  129. }