ServiceItemCountForm.cs 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  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.MembershipManage.StatisticsForm
  10. {
  11. public partial class ServiceItemCountForm : LYFZ.Software.UI.MembershipManage.StatisticsForm.ServiceItemCountForm
  12. {
  13. LYFZ.BLL.BLL_ErpOrder orbll = new BLL.BLL_ErpOrder();
  14. LYFZ.BLL.BLL_ErpSystemConfigure cgbll = new BLL.BLL_ErpSystemConfigure();
  15. public ServiceItemCountForm()
  16. {
  17. this.Load += ServiceItemCountForm_Load;
  18. this.Shown += ServiceItemCountForm_Shown;
  19. this.btnQuery.Click += btnQuery_Click;
  20. this.btnSet.Click += btnSet_Click;
  21. this.btnClose.Click += btnClose_Click;
  22. this.txtServiceItemCount.KeyPress += txtServiceItemCount_KeyPress;
  23. }
  24. /// <summary>
  25. /// 窗体加载事件
  26. /// </summary>
  27. /// <param name="sender"></param>
  28. /// <param name="e"></param>
  29. void ServiceItemCountForm_Load(object sender, EventArgs e)
  30. {
  31. DataTable tbl = cgbll.GetList("Sconfig_Code in ('MemberServiceItemCount')").Tables[0];
  32. if (tbl.Rows.Count > 0)
  33. {
  34. switch (tbl.Rows[0]["Sconfig_Code"].ToString().Trim())
  35. {
  36. case "MemberServiceItemCount":
  37. this.txtServiceItemCount.Text = tbl.Rows[0]["Sconfig_Value"].ToString().Trim();
  38. break;
  39. }
  40. }
  41. else
  42. { this.txtServiceItemCount.Text = "0"; }
  43. }
  44. /// <summary>
  45. /// 窗体加载事件
  46. /// </summary>
  47. /// <param name="sender"></param>
  48. /// <param name="e"></param>
  49. void ServiceItemCountForm_Shown(object sender, EventArgs e)
  50. {
  51. this.btnQuery_Click(this, null);
  52. }
  53. /// <summary>
  54. /// 查询
  55. /// </summary>
  56. /// <param name="sender"></param>
  57. /// <param name="e"></param>
  58. void btnQuery_Click(object sender, EventArgs e)
  59. {
  60. string StrTableName = "tb_ErpMemberCardServiceContent Left Join tb_ErpMemberCard on Mc_Number = Mcse_Number Left Join tb_ErpCustomer on Cus_CustomerNumber = Mc_CustomerNumber";
  61. DataTable dt = orbll.GetView_Custom(StrTableName, StrWhere: "Mcse_ServiceCount <= " + this.txtServiceItemCount.Text.Trim() + "", ShowColumnName: "Mcse_Number AS Ord_Number,Mc_CradNumber AS 会员卡号,Cus_Name AS 姓名,Cus_Telephone AS 电话,Mcse_ServiceContent AS 服务项,Mcse_ServiceCount AS 服务次数", filedOrder: "Mcse_Number,Mcse_ServiceContent,Mcse_ServiceCount").Tables[0];
  62. this.dgvData.StrValueNullColumn = "会员卡号,姓名,电话";
  63. this.dgvData.dgvFixedHideColumn = "Ord_Number";
  64. this.dgvData.DataSource(dt);
  65. }
  66. /// <summary>
  67. /// 设置
  68. /// </summary>
  69. /// <param name="sender"></param>
  70. /// <param name="e"></param>
  71. void btnSet_Click(object sender, EventArgs e)
  72. {
  73. LYFZ.Software.MainBusiness.MembershipManage.StatisticsForm.ServiceItemCountSetForm frm = new ServiceItemCountSetForm();
  74. frm.ShowDialog();
  75. if (frm.IsSaveed)
  76. {
  77. this.txtServiceItemCount.Text = frm.StrValue;
  78. this.btnQuery_Click(this, null);
  79. }
  80. }
  81. /// <summary>
  82. /// 关闭
  83. /// </summary>
  84. /// <param name="sender"></param>
  85. /// <param name="e"></param>
  86. void btnClose_Click(object sender, EventArgs e)
  87. {
  88. this.Close();
  89. }
  90. /// <summary>
  91. /// 输入限制
  92. /// </summary>
  93. /// <param name="sender"></param>
  94. /// <param name="e"></param>
  95. void txtServiceItemCount_KeyPress(object sender, KeyPressEventArgs e)
  96. {
  97. if (!Char.IsNumber(e.KeyChar) && !Char.IsControl(e.KeyChar))
  98. { e.Handled = true; }
  99. }
  100. }
  101. }