FrmStaffAwardPunishUpdate.cs 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148
  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.FinancialManagement.StaffAwardPunish
  10. {
  11. public partial class FrmStaffAwardPunishUpdate : LYFZ.Software.UI.FinancialManagement.StaffAwardPunish.FrmStaffAwardPunishUpdate
  12. {
  13. LYFZ.BLL.BLL_ErpRewardPunishment rpbll = new BLL.BLL_ErpRewardPunishment();
  14. public FrmStaffAwardPunishUpdate()
  15. {
  16. this.Shown += FrmStaffAwardPunishUpdate_Shown;
  17. this.txtRp_Money.KeyPress += txtRp_Money_KeyPress;
  18. this.btnCanle.Click += btnCanle_Click;
  19. this.btnSave.Click += btnSave_Click;
  20. }
  21. /// <summary>
  22. /// 是否保存
  23. /// </summary>
  24. public bool IsSaveed = false;
  25. /// <summary>
  26. /// 要修改的ID
  27. /// </summary>
  28. public string StrOrderID;
  29. string StrUserID = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.LoginUserModel.User_EmployeeID;
  30. string StrUserName = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.LoginUserModel.User_Name;
  31. /// <summary>
  32. /// 窗体加载事件
  33. /// </summary>
  34. /// <param name="sender"></param>
  35. /// <param name="e"></param>
  36. void FrmStaffAwardPunishUpdate_Shown(object sender, EventArgs e)
  37. {
  38. LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.BindComboBoxTreeView_DepartmentAndEmployee(this.txtTsorder_OpenSingle, IsFirstNodeNull: true);
  39. if (!string.IsNullOrEmpty(StrOrderID))
  40. {
  41. DataTable dt = rpbll.GetList("Id=" + StrOrderID + "").Tables[0];
  42. txtTsorder_OpenSingle.TagFindText(dt.Rows[0]["Rp_RelevantPeople"].ToString());
  43. cmbRp_Type.Text = dt.Rows[0]["Rp_Type"].ToString();
  44. txtRp_Money.Text = dt.Rows[0]["Rp_Money"].ToString();
  45. cmbRp_Status.Text = dt.Rows[0]["Rp_Status"].ToString();
  46. txtRp_RPDatetime.Text = Convert.ToDateTime(dt.Rows[0]["Rp_RPDatetime"]).ToString("yyyy-MM-dd");
  47. txtRp_PersonHandling.Text = StrUserName;
  48. txtRp_Remark.Text = dt.Rows[0]["Rp_Remark"].ToString();
  49. }
  50. if (!LYFZSS.SystemSpecterPossessed.ISystemSpecterPossessed.LargeResolveSystemSpecterPossessed(LYFZSS.SystemSpecterType.SST_D))
  51. {
  52. this.cmbRp_Status.Items.Remove("薪资执行");
  53. }
  54. }
  55. /// <summary>
  56. /// 输入框设置
  57. /// </summary>
  58. /// <param name="sender"></param>
  59. /// <param name="e"></param>
  60. void txtRp_Money_KeyPress(object sender, KeyPressEventArgs e)
  61. {
  62. if (!Char.IsNumber(e.KeyChar) && !Char.IsPunctuation(e.KeyChar) && !Char.IsControl(e.KeyChar))
  63. { e.Handled = true; }
  64. else if (Char.IsPunctuation(e.KeyChar))
  65. {
  66. if (e.KeyChar == '.')
  67. {
  68. if (((System.Windows.Forms.TextBox)sender).Text.LastIndexOf('.') != -1)
  69. { e.Handled = true; }
  70. }
  71. else
  72. { e.Handled = true; }
  73. }
  74. }
  75. /// <summary>
  76. /// 取消
  77. /// </summary>
  78. /// <param name="sender"></param>
  79. /// <param name="e"></param>
  80. void btnCanle_Click(object sender, EventArgs e)
  81. {
  82. this.Close();
  83. }
  84. /// <summary>
  85. /// 保存
  86. /// </summary>
  87. /// <param name="sender"></param>
  88. /// <param name="e"></param>
  89. void btnSave_Click(object sender, EventArgs e)
  90. {
  91. #region 判断不能为空
  92. if (string.IsNullOrEmpty(txtTsorder_OpenSingle.Text.Trim()))
  93. {
  94. MessageBoxCustom.Show("相关人员不能为空!");
  95. return;
  96. }
  97. if (string.IsNullOrEmpty(cmbRp_Type.Text))
  98. {
  99. MessageBoxCustom.Show("奖罚类别不能为空!");
  100. return;
  101. }
  102. if (string.IsNullOrEmpty(txtRp_Money.Text))
  103. {
  104. MessageBoxCustom.Show("奖罚金额不能为空!");
  105. return;
  106. }
  107. if (string.IsNullOrEmpty(cmbRp_Status.Text))
  108. {
  109. MessageBoxCustom.Show("是否执行不能为空!");
  110. return;
  111. }
  112. if (string.IsNullOrEmpty(txtRp_RPDatetime.Text))
  113. {
  114. MessageBoxCustom.Show("日期不能为空!");
  115. return;
  116. }
  117. if (string.IsNullOrEmpty(txtRp_PersonHandling.Text))
  118. {
  119. MessageBoxCustom.Show("经手人不能为空!");
  120. return;
  121. }
  122. #endregion
  123. #region 修改
  124. DateTime StrTime = SDateTime.Now;
  125. LYFZ.Model.Model_ErpRewardPunishment model = rpbll.GetModel(Convert.ToInt32(StrOrderID));
  126. model.Rp_Type = this.cmbRp_Type.Text;
  127. model.Rp_RelevantPeople = this.txtTsorder_OpenSingle.Tag.ToString();
  128. model.Rp_Money = Convert.ToDecimal(this.txtRp_Money.Text);
  129. model.Rp_Status = this.cmbRp_Status.Text;
  130. //model.Rp_RPDatetime = StrTime;
  131. model.Rp_PersonHandling = StrUserID;
  132. model.Rp_Reason = "";
  133. model.Rp_Remark = this.txtRp_Remark.Text;
  134. model.Rp_UpdateDatetime = StrTime;
  135. model.Rp_UpdateName = StrUserID;
  136. if (rpbll.Update(model))
  137. {
  138. this.IsSaveed = true;
  139. MessageBoxCustom.Show("保存成功!");
  140. }
  141. else
  142. { MessageBoxCustom.Show("保存失败!"); }
  143. #endregion
  144. }
  145. }
  146. }