DressPageCountSamllForm.cs 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  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.Dresses.SetSmallForm
  10. {
  11. public partial class DressPageCountSamllForm : LYFZ.Software.UI.Dresses.SetSmallForm.DressPageCountSamllForm
  12. {
  13. LYFZ.BLL.BLL_ErpOrder orbll = new BLL.BLL_ErpOrder();
  14. LYFZ.BLL.BLL_ErpSystemConfigure scbll = new BLL.BLL_ErpSystemConfigure();
  15. public DressPageCountSamllForm()
  16. {
  17. this.Load += DressPageCountSamllForm_Load;
  18. this.btnSaveed.Click += btnSaveed_Click;
  19. this.txtLoadCount.KeyPress += txtLoadCount_KeyPress;
  20. this.txtLoadCount.Leave += txtLoadCount_Leave;
  21. }
  22. /// <summary>
  23. /// 是否保存
  24. /// </summary>
  25. public bool IsSaveed = false;
  26. DataTable dt = new DataTable();
  27. /// <summary>
  28. /// 窗体加载事件
  29. /// </summary>
  30. /// <param name="sender"></param>
  31. /// <param name="e"></param>
  32. void DressPageCountSamllForm_Load(object sender, EventArgs e)
  33. {
  34. dt = orbll.GetView_Custom("tb_ErpSystemConfigure", StrWhere: "Sconfig_Code = 'DressPageCount'", ShowColumnName: "*").Tables[0];
  35. if (dt.Rows.Count > 0)
  36. {
  37. if (dt.Rows[0]["Sconfig_Value"].ToString().Trim().Length > 0)
  38. { this.txtLoadCount.Text = dt.Rows[0]["Sconfig_Value"].ToString().Trim(); }
  39. else
  40. { this.txtLoadCount.Text = "0"; }
  41. }
  42. else
  43. { this.txtLoadCount.Text = "50"; }
  44. }
  45. /// <summary>
  46. /// 保存
  47. /// </summary>
  48. /// <param name="sender"></param>
  49. /// <param name="e"></param>
  50. void btnSaveed_Click(object sender, EventArgs e)
  51. {
  52. LYFZ.Model.Model_ErpSystemConfigure model = null;
  53. if (dt.Rows.Count > 0)
  54. {
  55. model = scbll.DataRowToModel(dt.Rows[0]);
  56. if (this.txtLoadCount.Text.Trim().Length > 0)
  57. { model.Sconfig_Value = this.txtLoadCount.Text.Trim(); }
  58. else
  59. { model.Sconfig_Value = "0"; }
  60. IsSaveed = scbll.Update(model);
  61. }
  62. else
  63. {
  64. model = new Model.Model_ErpSystemConfigure();
  65. model.Sconfig_Code = "DressPageCount";
  66. model.Sconfig_Name = "礼服每页加载条数";
  67. model.Sconfig_Value = "50";
  68. model.Sconfig_Remark = "礼服租售工具箱首次加载每页显示条数";
  69. model.Sconfig_IsEnabled = true;
  70. model.Sconfig_Type = "1";
  71. model.Sconfig_Order = 0;
  72. model.Sconfig_CreateDatetime = SDateTime.Now;
  73. model.Sconfig_CreateName = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.LoginUserModel.User_Name;
  74. IsSaveed = scbll.Add(model);
  75. }
  76. if (IsSaveed)
  77. {
  78. MessageBoxCustom.Show("保存成功!");
  79. this.Close();
  80. }
  81. else
  82. { MessageBoxCustom.Show("保存失败!"); return; }
  83. }
  84. /// <summary>
  85. /// 文本框输入事件
  86. /// </summary>
  87. /// <param name="sender"></param>
  88. /// <param name="e"></param>
  89. void txtLoadCount_KeyPress(object sender, KeyPressEventArgs e)
  90. {
  91. if (!Char.IsNumber(e.KeyChar) && !Char.IsControl(e.KeyChar))
  92. { e.Handled = true; }
  93. }
  94. /// <summary>
  95. /// 离开事件
  96. /// </summary>
  97. /// <param name="sender"></param>
  98. /// <param name="e"></param>
  99. void txtLoadCount_Leave(object sender, EventArgs e)
  100. {
  101. LYFZ.ComponentLibrary.TextBoxEx txtText = (LYFZ.ComponentLibrary.TextBoxEx)sender;
  102. if (txtText.Text.Trim().Length <= 0)
  103. { txtText.Text = "0"; }
  104. }
  105. }
  106. }