MaxTeamNameSetSuperSmallForm.cs 7.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177
  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.MarketingAllPerson.SuperSmallForm
  10. {
  11. public partial class MaxTeamNameSetSuperSmallForm : LYFZ.Software.UI.MarketingAllPerson.SuperSmallForm.MaxTeamNameSetSuperSmallForm
  12. {
  13. LYFZ.BLL.BLL_ErpOrder orbll = new BLL.BLL_ErpOrder();
  14. LYFZ.BLL.BLL_ErpTeamMaxNameSet tmxnbll = new BLL.BLL_ErpTeamMaxNameSet();
  15. public MaxTeamNameSetSuperSmallForm()
  16. {
  17. this.Load += MaxTeamNameSetSuperSmallForm_Load;
  18. this.Shown += MaxTeamNameSetSuperSmallForm_Shown;
  19. this.btnNew.Click += btnNew_Click;
  20. this.btnSaveed.Click += btnSaveed_Click;
  21. this.btnDelete.Click += btnDelete_Click;
  22. this.dgvData.CellMouseClick += dgvData_CellMouseClick;
  23. this.txtTeamMaxName.KeyPress += txtTeamMaxName_KeyPress;
  24. }
  25. /// <summary>
  26. /// 是否保存
  27. /// </summary>
  28. public bool IsSaveed = false;
  29. /// <summary>
  30. /// 窗体加载事件
  31. /// </summary>
  32. /// <param name="sender"></param>
  33. /// <param name="e"></param>
  34. void MaxTeamNameSetSuperSmallForm_Load(object sender, EventArgs e)
  35. {
  36. DataTable dt = orbll.GetView_Custom("tb_ErpTeamMaxNameSet", StrWhere: "", ShowColumnName: "ID,Tmxn_Name AS 大队名称").Tables[0];
  37. this.dgvData.DataSource(dt, strHideField: "ID");
  38. }
  39. /// <summary>
  40. /// 窗体加载事件
  41. /// </summary>
  42. /// <param name="sender"></param>
  43. /// <param name="e"></param>
  44. void MaxTeamNameSetSuperSmallForm_Shown(object sender, EventArgs e)
  45. {
  46. }
  47. /// <summary>
  48. /// 新建
  49. /// </summary>
  50. /// <param name="sender"></param>
  51. /// <param name="e"></param>
  52. void btnNew_Click(object sender, EventArgs e)
  53. {
  54. this.IntClickID = 0;
  55. this.txtTeamMaxName.Text = "";
  56. this.btnSaveed.Text = " 保 存";
  57. }
  58. /// <summary>
  59. /// 保存
  60. /// </summary>
  61. /// <param name="sender"></param>
  62. /// <param name="e"></param>
  63. void btnSaveed_Click(object sender, EventArgs e)
  64. {
  65. if (string.IsNullOrEmpty(this.txtTeamMaxName.Text.Trim()))
  66. { MessageBoxCustom.Show("大队名称不能为空!"); return; }
  67. DateTime StrTime = SDateTime.Now;
  68. string StrUserID = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.LoginUserModel.User_EmployeeID;
  69. LYFZ.Model.Model_ErpTeamMaxNameSet model = null;
  70. if (this.IntClickID <= 0)
  71. {
  72. DataTable dt = orbll.GetView_Custom("tb_ErpTeamMaxNameSet", StrWhere: "Tmxn_Name = '" + this.txtTeamMaxName.Text.Trim() + "'", ShowColumnName: "ID").Tables[0];
  73. if (dt.Rows.Count > 0)
  74. { MessageBoxCustom.Show("大队名称已存在,不能重复命名!"); return; }
  75. model = new Model.Model_ErpTeamMaxNameSet();
  76. model.Tmxn_Number = "MXN_" + LYFZ.WinAPI.CustomPublicMethod.GenerateId().ToString().Trim();
  77. model.Tmxn_Name = this.txtTeamMaxName.Text.Trim();
  78. model.Tmxn_CreateDateTime = StrTime;
  79. model.Tmxn_CreateName = StrUserID;
  80. if (tmxnbll.Add(model))
  81. {
  82. this.IsSaveed = true;
  83. MessageBoxCustom.Show("添加成功!");
  84. this.MaxTeamNameSetSuperSmallForm_Load(this, null);
  85. this.btnNew_Click(this, null);
  86. }
  87. else
  88. { MessageBoxCustom.Show("添加失败!"); }
  89. }
  90. else
  91. {
  92. DataTable dt = orbll.GetView_Custom("tb_ErpTeamMaxNameSet", StrWhere: "Tmxn_Name = '" + this.txtTeamMaxName.Text.Trim() + "' And ID != '" + this.IntClickID + "'", ShowColumnName: "ID").Tables[0];
  93. if (dt.Rows.Count > 0)
  94. { MessageBoxCustom.Show("大队名称已存在,不能重复命名!"); return; }
  95. model = tmxnbll.GetModel(this.IntClickID);
  96. model.Tmxn_Name = this.txtTeamMaxName.Text.Trim();
  97. model.Tmxn_UpdateDateTime = StrTime;
  98. model.Tmxn_UpdateName = StrUserID;
  99. if (tmxnbll.Update(model))
  100. {
  101. this.IsSaveed = true;
  102. MessageBoxCustom.Show("修改成功!");
  103. this.MaxTeamNameSetSuperSmallForm_Load(this, null);
  104. }
  105. else
  106. { MessageBoxCustom.Show("修改失败!"); }
  107. }
  108. }
  109. /// <summary>
  110. /// 删除
  111. /// </summary>
  112. /// <param name="sender"></param>
  113. /// <param name="e"></param>
  114. void btnDelete_Click(object sender, EventArgs e)
  115. {
  116. if (this.IntClickID > 0)
  117. {
  118. DataTable dt = orbll.GetView_Custom("tb_ErpTeamMaxNameSet", StrWhere: "ID = '" + this.IntClickID + "'", ShowColumnName: "Tmxn_Number").Tables[0];
  119. if (dt.Rows.Count > 0)
  120. {
  121. dt = orbll.GetView_Custom("tb_ErpTeamMaxTaskSet", StrWhere: "Tmxt_TmxnNumber = '" + dt.Rows[0]["Tmxn_Number"].ToString().Trim() + "'", ShowColumnName: "ID").Tables[0];
  122. if (dt.Rows.Count > 0)
  123. { MessageBoxCustom.Show("大队名称已有使用,不能删除!"); return; }
  124. }
  125. if (MessageBoxCustom.Show("您确定要删除吗?", "温馨提示", MessageBoxButtons.YesNo) == DialogResult.Yes)
  126. {
  127. if (tmxnbll.Delete(this.IntClickID))
  128. {
  129. this.IsSaveed = true;
  130. MessageBoxCustom.Show("删除成功!");
  131. this.MaxTeamNameSetSuperSmallForm_Load(this, null);
  132. this.btnNew_Click(this, null);
  133. }
  134. else
  135. { MessageBoxCustom.Show("删除失败!"); }
  136. }
  137. }
  138. else
  139. { MessageBoxCustom.Show("请选择你要删除的大队!"); }
  140. }
  141. int IntClickID = 0;
  142. /// <summary>
  143. /// 列表点击事件
  144. /// </summary>
  145. /// <param name="sender"></param>
  146. /// <param name="e"></param>
  147. void dgvData_CellMouseClick(object sender, DataGridViewCellMouseEventArgs e)
  148. {
  149. if (e.ColumnIndex >= 0 && e.RowIndex >= 0)
  150. {
  151. if (this.dgvData.Rows.Count > 0)
  152. {
  153. this.IntClickID = Convert.ToInt32(this.dgvData.Rows[e.RowIndex].Cells["ID"].Value);
  154. this.txtTeamMaxName.Text = this.dgvData.Rows[e.RowIndex].Cells["大队名称"].Value.ToString().Trim();
  155. this.btnSaveed.Text = " 修 改";
  156. }
  157. }
  158. }
  159. /// <summary>
  160. /// 大队输入限制
  161. /// </summary>
  162. /// <param name="sender"></param>
  163. /// <param name="e"></param>
  164. void txtTeamMaxName_KeyPress(object sender, KeyPressEventArgs e)
  165. {
  166. if (!Char.IsNumber(e.KeyChar) && !Char.IsControl(e.KeyChar) && !Char.IsLetterOrDigit(e.KeyChar) && e.KeyChar != '_' && e.KeyChar != ' ')
  167. { e.Handled = true; }
  168. if (Char.IsNumber(e.KeyChar))
  169. {
  170. if (!System.Text.RegularExpressions.Regex.IsMatch(e.KeyChar.ToString(), "[0-9]") && e.KeyChar != '\b')
  171. { e.Handled = true; }
  172. }
  173. }
  174. }
  175. }