ServiceItemCountSetForm.cs 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150
  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 ServiceItemCountSetForm : LYFZ.Software.UI.MembershipManage.StatisticsForm.ServiceItemCountSetForm
  12. {
  13. LYFZ.BLL.BLL_ErpSystemConfigure bll = new BLL.BLL_ErpSystemConfigure();
  14. public ServiceItemCountSetForm()
  15. {
  16. this.Load += ServiceItemCountSetForm_Load;
  17. this.btnOK.Click += btnOK_Click;
  18. this.btnClose.Click += btnClose_Click;
  19. this.txtServiceItemCount.KeyPress += txtServiceItemCount_KeyPress;
  20. }
  21. /// <summary>
  22. /// 是否保存
  23. /// </summary>
  24. public bool IsSaveed = false;
  25. public string StrValue = "";
  26. /// <summary>
  27. /// 窗体加载事件
  28. /// </summary>
  29. /// <param name="sender"></param>
  30. /// <param name="e"></param>
  31. void ServiceItemCountSetForm_Load(object sender, EventArgs e)
  32. {
  33. DataTable tbl = bll.GetList("Sconfig_Code in ('MemberServiceItemCount')").Tables[0];
  34. if (tbl.Rows.Count > 0)
  35. {
  36. this.txtServiceItemCount.Text = tbl.Rows[0]["Sconfig_Value"].ToString().Trim();
  37. this.txtServiceItemCount.Tag = tbl.Rows[0]["ID"].ToString().Trim();
  38. }
  39. else
  40. { this.txtServiceItemCount.Text = "0"; }
  41. }
  42. /// <summary>
  43. /// 确定
  44. /// </summary>
  45. /// <param name="sender"></param>
  46. /// <param name="e"></param>
  47. void btnOK_Click(object sender, EventArgs e)
  48. {
  49. DateTime strTime = SDateTime.Now;
  50. LYFZ.Model.Model_ErpSystemConfigure model = null;
  51. List<Helper.CommandInfo> clist = new List<Helper.CommandInfo>();
  52. string strUserID = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.LoginUserModel.User_EmployeeID;
  53. #region 服务卡服务项次数次提醒
  54. if (this.txtServiceItemCount.Tag != null)
  55. {
  56. model = bll.GetModel("Sconfig_Code", "MemberServiceItemCount");
  57. if (model.Sconfig_Value.Trim() != Convert.ToInt32(this.txtServiceItemCount.Text.Trim()).ToString())
  58. {
  59. model.Sconfig_Name = "服务卡服务项次数次提醒";
  60. model.Sconfig_Value = Convert.ToInt32(this.txtServiceItemCount.Text.Trim()).ToString();
  61. model.Sconfig_Remark = "服务项次数低于N次提醒";
  62. model.Sconfig_CreateDatetime = strTime;
  63. model.Sconfig_CreateName = strUserID;
  64. clist.Add(bll.GetUpdateCommandInfo(model));
  65. }
  66. }
  67. else
  68. {
  69. model = new Model.Model_ErpSystemConfigure();
  70. model.Sconfig_Code = "MemberServiceItemCount";
  71. model.Sconfig_Name = "服务卡服务项次数次提醒";
  72. model.Sconfig_Value = Convert.ToInt32(this.txtServiceItemCount.Text.Trim()).ToString();
  73. model.Sconfig_IsEnabled = true;
  74. model.Sconfig_Remark = "服务项次数低于N次提醒";
  75. model.Sconfig_Type = "";
  76. model.Sconfig_Order = 1;
  77. model.Sconfig_CreateDatetime = strTime;
  78. model.Sconfig_CreateName = strUserID;
  79. clist.Add(bll.GetAddCommandInfo(model));
  80. }
  81. #endregion
  82. if (clist.Count > 0)
  83. {
  84. if (LYFZ.BLL.BaseBllOperate.ExecuteSqlTran(clist) <= 0)
  85. { MessageBoxCustom.Show("保存失败"); return; }
  86. this.IsSaveed = true;
  87. this.StrValue = this.txtServiceItemCount.Text.Trim();
  88. MessageBoxCustom.Show("保存成功");
  89. this.Close();
  90. }
  91. else
  92. { MessageBoxCustom.Show("没做任何修改,无须保存!"); return; }
  93. }
  94. /// <summary>
  95. /// 关闭
  96. /// </summary>
  97. /// <param name="sender"></param>
  98. /// <param name="e"></param>
  99. void btnClose_Click(object sender, EventArgs e)
  100. {
  101. this.Close();
  102. }
  103. /// <summary>
  104. /// 输入限制
  105. /// </summary>
  106. /// <param name="sender"></param>
  107. /// <param name="e"></param>
  108. void txtServiceItemCount_KeyPress(object sender, KeyPressEventArgs e)
  109. {
  110. //bool IsFind = false;
  111. //IsFind = true;
  112. //if (Convert.ToString(e.KeyChar) == "-")
  113. //{
  114. // if (this.txtServiceItemCount.BaseText.SelectedText.Trim() == this.txtServiceItemCount.Text.Trim())
  115. // { this.txtServiceItemCount.Text = ""; }
  116. // if (this.txtServiceItemCount.Text.Trim().IndexOf('-') != -1)
  117. // { e.Handled = true; }
  118. // if (this.txtServiceItemCount.Text.Trim().Length > 0)
  119. // { e.Handled = true; }
  120. //}
  121. //else if (!Char.IsNumber(e.KeyChar) && !Char.IsControl(e.KeyChar))
  122. //{ e.Handled = true; }
  123. //else
  124. //{
  125. // if (!string.IsNullOrEmpty(this.txtServiceItemCount.Text.Trim()))
  126. // {
  127. // char[] chr = this.txtServiceItemCount.Text.Trim().ToArray();
  128. // if (chr[0].ToString().Trim() == "-")
  129. // {
  130. // if (Char.IsNumber(e.KeyChar))
  131. // {
  132. // if (Convert.ToInt32(e.KeyChar.ToString().Trim()) != 1)
  133. // { e.Handled = true; }
  134. // }
  135. // }
  136. // }
  137. //}
  138. //if (!IsFind)
  139. {
  140. if (!Char.IsNumber(e.KeyChar) && !Char.IsControl(e.KeyChar))
  141. { e.Handled = true; }
  142. }
  143. }
  144. }
  145. }