AddNewActiveSmallForm.cs 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300
  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.SetSmallForm
  10. {
  11. public partial class AddNewActiveSmallForm : LYFZ.Software.UI.MarketingAllPerson.SetSmallForm.AddNewActiveSmallForm
  12. {
  13. LYFZ.BLL.BLL_ErpOrder orbll = new BLL.BLL_ErpOrder();
  14. LYFZ.BLL.BLL_ErpTeamActiveSet tasbll = new BLL.BLL_ErpTeamActiveSet();
  15. public AddNewActiveSmallForm()
  16. {
  17. this.Load += AddNewActiveSmallForm_Load;
  18. this.Shown += AddNewActiveSmallForm_Shown;
  19. this.btnNew.Click += btnNew_Click;
  20. this.btnSaveed.Click += btnSaveed_Click;
  21. this.btnDelete.Click += btnDelete_Click;
  22. this.btnClose.Click += btnClose_Click;
  23. this.dgvData.CellMouseClick += dgvData_CellMouseClick;
  24. this.chkShow.Click += chkShow_Click;
  25. this.chkHide.Click += chkHide_Click;
  26. this.txtName.KeyPress += txtName_KeyPress;
  27. this.txtBaodiTask.KeyPress += txtBaodiTask_KeyPress;
  28. this.txtTargetTask.KeyPress += txtTargetTask_KeyPress;
  29. this.txtSprintTask.KeyPress += txtSprintTask_KeyPress;
  30. }
  31. /// <summary>
  32. /// 是否保存
  33. /// </summary>
  34. public bool IsSaveed = false;
  35. /// <summary>
  36. /// 窗体加载事件
  37. /// </summary>
  38. /// <param name="sender"></param>
  39. /// <param name="e"></param>
  40. void AddNewActiveSmallForm_Load(object sender, EventArgs e)
  41. {
  42. DataTable dt = orbll.GetView_Custom("tb_ErpTeamActiveSet", StrWhere: "", ShowColumnName: "ID,Tas_Name AS 活动名称,(dbo.fn_CheckDateTimeReturn_Date(dbo.fn_CheckDateTime(Tas_DateTimeStart)) + '至' + dbo.fn_CheckDateTimeReturn_Date(dbo.fn_CheckDateTime(Tas_DateTimeEnd))) AS 截止日期,Tas_BaodiTask AS 保底任务,Tas_TargetTask AS 目标任务,Tas_SprintTask AS 冲刺任务,(case when Tas_IsEnabled = 0 then '隐藏' else '显示' end) AS 是否显示").Tables[0];
  43. this.dgvData.DataSource(dt, strHideField: "ID");
  44. }
  45. /// <summary>
  46. /// 窗体加载事件
  47. /// </summary>
  48. /// <param name="sender"></param>
  49. /// <param name="e"></param>
  50. void AddNewActiveSmallForm_Shown(object sender, EventArgs e)
  51. {
  52. }
  53. /// <summary>
  54. /// 新建
  55. /// </summary>
  56. /// <param name="sender"></param>
  57. /// <param name="e"></param>
  58. void btnNew_Click(object sender, EventArgs e)
  59. {
  60. this.IntClickID = 0;
  61. this.txtName.Text = "";
  62. this.dtpDateTimeStart.DateValue = "";
  63. this.dtpDateTimeEnd.DateValue = "";
  64. this.chkShow.Checked = true;
  65. this.chkHide.Checked = false;
  66. this.txtBaodiTask.Text = "";
  67. this.txtTargetTask.Text = "";
  68. this.txtSprintTask.Text = "";
  69. this.btnSaveed.Text = " 保 存";
  70. }
  71. /// <summary>
  72. /// 保存
  73. /// </summary>
  74. /// <param name="sender"></param>
  75. /// <param name="e"></param>
  76. void btnSaveed_Click(object sender, EventArgs e)
  77. {
  78. if (string.IsNullOrEmpty(this.txtName.Text.Trim()))
  79. { MessageBoxCustom.Show("活动名称不能为空!"); return; }
  80. if (string.IsNullOrEmpty(this.dtpDateTimeStart.DateValue.Trim()))
  81. { MessageBoxCustom.Show("开始日期不能为空!"); return; }
  82. if (string.IsNullOrEmpty(this.dtpDateTimeEnd.DateValue.Trim()))
  83. { MessageBoxCustom.Show("结束日期不能为空!"); return; }
  84. if (string.IsNullOrEmpty(this.txtBaodiTask.Text.Trim()))
  85. { MessageBoxCustom.Show("保底任务不能为空!"); return; }
  86. if (string.IsNullOrEmpty(this.txtTargetTask.Text.Trim()))
  87. { MessageBoxCustom.Show("目标任务不能为空!"); return; }
  88. if (string.IsNullOrEmpty(this.txtSprintTask.Text.Trim()))
  89. { MessageBoxCustom.Show("冲刺不能为空!"); return; }
  90. if (Convert.ToDateTime(this.dtpDateTimeStart.DateValue) > Convert.ToDateTime(this.dtpDateTimeEnd.DateValue))
  91. { MessageBoxCustom.Show("开始日期不能大于结束日期!"); return; }
  92. if (Convert.ToDecimal(this.txtBaodiTask.Text.Trim()) > Convert.ToDecimal(this.txtTargetTask.Text.Trim()))
  93. { MessageBoxCustom.Show("目标任务不能小于保底任务!"); return; }
  94. if (Convert.ToDecimal(this.txtTargetTask.Text.Trim()) > Convert.ToDecimal(this.txtSprintTask.Text.Trim()))
  95. { MessageBoxCustom.Show("冲刺任务不能小于目标任务!"); return; }
  96. DateTime StrTime = SDateTime.Now;
  97. string StrUserID = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.LoginUserModel.User_EmployeeID;
  98. LYFZ.Model.Model_ErpTeamActiveSet model = null;
  99. if (this.IntClickID <= 0)
  100. {
  101. DataTable dt = orbll.GetView_Custom("tb_ErpTeamActiveSet", StrWhere: "Tas_Name = '" + this.txtName.Text.Trim() + "'", ShowColumnName: "ID").Tables[0];
  102. if (dt.Rows.Count > 0)
  103. { MessageBoxCustom.Show("活动名称已存在,不能重复命名!"); return; }
  104. model = new Model.Model_ErpTeamActiveSet();
  105. model.Tas_Number = "MAN_" + LYFZ.WinAPI.CustomPublicMethod.GenerateId().ToString().Trim();
  106. model.Tas_Name = this.txtName.Text.Trim();
  107. model.Tas_DateTimeStart = Convert.ToDateTime(this.dtpDateTimeStart.DateValue);
  108. model.Tas_DateTimeEnd = Convert.ToDateTime(this.dtpDateTimeEnd.DateValue).AddDays(1).AddSeconds(-1);
  109. model.Tas_BaodiTask = Convert.ToDecimal(this.txtBaodiTask.Text.Trim());
  110. model.Tas_TargetTask = Convert.ToDecimal(this.txtTargetTask.Text.Trim());
  111. model.Tas_SprintTask = Convert.ToDecimal(this.txtSprintTask.Text.Trim());
  112. model.Tas_IsEnabled = this.chkShow.Checked;
  113. model.Tas_CreateDateTime = StrTime;
  114. model.Tas_CreateName = StrUserID;
  115. if (tasbll.Add(model))
  116. {
  117. this.IsSaveed = true;
  118. MessageBoxCustom.Show("添加成功!");
  119. this.AddNewActiveSmallForm_Load(this, null);
  120. this.btnNew_Click(this, null);
  121. }
  122. else
  123. { MessageBoxCustom.Show("添加失败!"); }
  124. }
  125. else
  126. {
  127. DataTable dt = orbll.GetView_Custom("tb_ErpTeamActiveSet", StrWhere: "Tas_Name = '" + this.txtName.Text.Trim() + "' And ID != '" + this.IntClickID + "'", ShowColumnName: "ID").Tables[0];
  128. if (dt.Rows.Count > 0)
  129. { MessageBoxCustom.Show("活动名称已存在,不能重复命名!"); return; }
  130. model = tasbll.GetModel(this.IntClickID);
  131. model.Tas_Name = this.txtName.Text.Trim();
  132. model.Tas_DateTimeStart = Convert.ToDateTime(this.dtpDateTimeStart.DateValue);
  133. model.Tas_DateTimeEnd = Convert.ToDateTime(this.dtpDateTimeEnd.DateValue).AddDays(1).AddSeconds(-1);
  134. model.Tas_BaodiTask = Convert.ToDecimal(this.txtBaodiTask.Text.Trim());
  135. model.Tas_TargetTask = Convert.ToDecimal(this.txtTargetTask.Text.Trim());
  136. model.Tas_SprintTask = Convert.ToDecimal(this.txtSprintTask.Text.Trim());
  137. model.Tas_IsEnabled = this.chkShow.Checked;
  138. model.Tas_UpdateDateTime = StrTime;
  139. model.Tas_UpdateName = StrUserID;
  140. if (tasbll.Update(model))
  141. {
  142. this.IsSaveed = true;
  143. MessageBoxCustom.Show("修改成功!");
  144. this.AddNewActiveSmallForm_Load(this, null);
  145. }
  146. else
  147. { MessageBoxCustom.Show("修改失败!"); }
  148. }
  149. }
  150. /// <summary>
  151. /// 删除
  152. /// </summary>
  153. /// <param name="sender"></param>
  154. /// <param name="e"></param>
  155. void btnDelete_Click(object sender, EventArgs e)
  156. {
  157. if (this.IntClickID > 0)
  158. {
  159. DataTable dt = orbll.GetView_Custom("tb_ErpTeamActiveSet", StrWhere: "ID = '" + this.IntClickID + "'", ShowColumnName: "Tas_Number").Tables[0];
  160. if (dt.Rows.Count > 0)
  161. {
  162. dt = orbll.GetView_Custom("tb_ErpTeamMaxTaskSet", StrWhere: "Tmxt_TasNumber = '" + dt.Rows[0]["Tas_Number"].ToString().Trim() + "'", ShowColumnName: "ID").Tables[0];
  163. if (dt.Rows.Count > 0)
  164. { MessageBoxCustom.Show("此活动名称已设置了大队,不能删除!"); return; }
  165. }
  166. if (MessageBoxCustom.Show("您确定要删除吗?", "温馨提示", MessageBoxButtons.YesNo) == DialogResult.Yes)
  167. {
  168. if (tasbll.Delete(this.IntClickID))
  169. {
  170. this.IsSaveed = true;
  171. MessageBoxCustom.Show("删除成功!");
  172. this.AddNewActiveSmallForm_Load(this, null);
  173. this.btnNew_Click(this, null);
  174. }
  175. else
  176. { MessageBoxCustom.Show("删除失败!"); }
  177. }
  178. }
  179. else
  180. { MessageBoxCustom.Show("请选择你要删除的活动!"); }
  181. }
  182. /// <summary>
  183. /// 关闭
  184. /// </summary>
  185. /// <param name="sender"></param>
  186. /// <param name="e"></param>
  187. void btnClose_Click(object sender, EventArgs e)
  188. {
  189. this.Close();
  190. }
  191. int IntClickID = 0;
  192. /// <summary>
  193. /// 列表点击事件
  194. /// </summary>
  195. /// <param name="sender"></param>
  196. /// <param name="e"></param>
  197. void dgvData_CellMouseClick(object sender, DataGridViewCellMouseEventArgs e)
  198. {
  199. if (e.ColumnIndex >= 0 && e.RowIndex >= 0)
  200. {
  201. if (this.dgvData.Rows.Count > 0)
  202. {
  203. this.IntClickID = Convert.ToInt32(this.dgvData.Rows[e.RowIndex].Cells["ID"].Value);
  204. this.txtName.Text = this.dgvData.Rows[e.RowIndex].Cells["活动名称"].Value.ToString().Trim();
  205. string[] StrArray = this.dgvData.Rows[e.RowIndex].Cells["截止日期"].Value.ToString().Trim().Split('至');
  206. this.dtpDateTimeStart.DateValue = StrArray[0].Trim();
  207. this.dtpDateTimeEnd.DateValue = StrArray[1].Trim();
  208. this.txtBaodiTask.Text = LYFZ.BLL.OtherCommonModel.RemoveLastExcessZero(this.dgvData.Rows[e.RowIndex].Cells["保底任务"].Value);
  209. this.txtTargetTask.Text = LYFZ.BLL.OtherCommonModel.RemoveLastExcessZero(this.dgvData.Rows[e.RowIndex].Cells["目标任务"].Value);
  210. this.txtSprintTask.Text = LYFZ.BLL.OtherCommonModel.RemoveLastExcessZero(this.dgvData.Rows[e.RowIndex].Cells["冲刺任务"].Value);
  211. if (this.dgvData.Rows[e.RowIndex].Cells["是否显示"].Value.ToString().Trim() == "显示")
  212. {
  213. this.chkShow.Checked = true;
  214. this.chkHide.Checked = false;
  215. }
  216. else
  217. {
  218. this.chkHide.Checked = true;
  219. this.chkShow.Checked = false;
  220. }
  221. this.btnSaveed.Text = " 修 改";
  222. }
  223. }
  224. }
  225. /// <summary>
  226. /// 显示
  227. /// </summary>
  228. /// <param name="sender"></param>
  229. /// <param name="e"></param>
  230. void chkShow_Click(object sender, EventArgs e)
  231. {
  232. this.chkShow.Checked = true;
  233. this.chkHide.Checked = false;
  234. }
  235. /// <summary>
  236. /// 隐藏
  237. /// </summary>
  238. /// <param name="sender"></param>
  239. /// <param name="e"></param>
  240. void chkHide_Click(object sender, EventArgs e)
  241. {
  242. this.chkHide.Checked = true;
  243. this.chkShow.Checked = false;
  244. }
  245. /// <summary>
  246. /// 活动名称限制输入
  247. /// </summary>
  248. /// <param name="sender"></param>
  249. /// <param name="e"></param>
  250. void txtName_KeyPress(object sender, KeyPressEventArgs e)
  251. {
  252. if (!Char.IsNumber(e.KeyChar) && !Char.IsControl(e.KeyChar) && !Char.IsLetterOrDigit(e.KeyChar) && e.KeyChar != '_' && e.KeyChar != ' ')
  253. { e.Handled = true; }
  254. if (Char.IsNumber(e.KeyChar))
  255. {
  256. if (!System.Text.RegularExpressions.Regex.IsMatch(e.KeyChar.ToString(), "[0-9]") && e.KeyChar != '\b')
  257. { e.Handled = true; }
  258. }
  259. }
  260. /// <summary>
  261. /// 保底限制输入
  262. /// </summary>
  263. /// <param name="sender"></param>
  264. /// <param name="e"></param>
  265. void txtBaodiTask_KeyPress(object sender, KeyPressEventArgs e)
  266. {
  267. if (!Char.IsNumber(e.KeyChar) && !Char.IsControl(e.KeyChar))
  268. { e.Handled = true; }
  269. if (!System.Text.RegularExpressions.Regex.IsMatch(e.KeyChar.ToString(), "[0-9]") && e.KeyChar != ' ' && e.KeyChar != '\b')
  270. { e.Handled = true; }
  271. }
  272. /// <summary>
  273. /// 目标限制输入
  274. /// </summary>
  275. /// <param name="sender"></param>
  276. /// <param name="e"></param>
  277. void txtTargetTask_KeyPress(object sender, KeyPressEventArgs e)
  278. {
  279. if (!Char.IsNumber(e.KeyChar) && !Char.IsControl(e.KeyChar))
  280. { e.Handled = true; }
  281. if (!System.Text.RegularExpressions.Regex.IsMatch(e.KeyChar.ToString(), "[0-9]") && e.KeyChar != ' ' && e.KeyChar != '\b')
  282. { e.Handled = true; }
  283. }
  284. /// <summary>
  285. /// 冲刺限制输入
  286. /// </summary>
  287. /// <param name="sender"></param>
  288. /// <param name="e"></param>
  289. void txtSprintTask_KeyPress(object sender, KeyPressEventArgs e)
  290. {
  291. if (!Char.IsNumber(e.KeyChar) && !Char.IsControl(e.KeyChar))
  292. { e.Handled = true; }
  293. if (!System.Text.RegularExpressions.Regex.IsMatch(e.KeyChar.ToString(), "[0-9]") && e.KeyChar != ' ' && e.KeyChar != '\b')
  294. { e.Handled = true; }
  295. }
  296. }
  297. }