FrmStaffAwardPunishEntry.cs 7.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169
  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 FrmStaffAwardPunishEntry : LYFZ.Software.UI.FinancialManagement.StaffAwardPunish.FrmStaffAwardPunishEntry
  12. {
  13. LYFZ.BLL.BLL_ErpRewardPunishment rpbll = new BLL.BLL_ErpRewardPunishment();
  14. public FrmStaffAwardPunishEntry()
  15. {
  16. this.Shown += FrmStaffAwardPunishEntry_Shown;
  17. this.txtRp_Money.KeyPress += txtRp_Money_KeyPress;
  18. this.btnCanle.Click += btnCanle_Click;
  19. this.btnSave.Click += btnSave_Click;
  20. this.btnUpdateTime.Click += btnUpdateTime_Click;
  21. }
  22. /// <summary>
  23. /// 是否保存
  24. /// </summary>
  25. public bool IsSaveed = false;
  26. string StrUserID = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.LoginUserModel.User_EmployeeID;
  27. string StrUserName = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.LoginUserModel.User_Name;
  28. /// <summary>
  29. /// 窗体加载事件
  30. /// </summary>
  31. /// <param name="sender"></param>
  32. /// <param name="e"></param>
  33. void FrmStaffAwardPunishEntry_Shown(object sender, EventArgs e)
  34. {
  35. LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.BindComboBoxTreeView_DepartmentAndEmployee(this.txtTsorder_OpenSingle, IsFirstNodeNull: true);
  36. this.txtRp_RPDatetime.DateValue = SDateTime.Now.ToString("yyyy-MM-dd");
  37. this.txtRp_PersonHandling.Text = StrUserName;
  38. if (!LYFZSS.SystemSpecterPossessed.ISystemSpecterPossessed.LargeResolveSystemSpecterPossessed(LYFZSS.SystemSpecterType.SST_D))
  39. {
  40. this.cmbRp_Status.Items.Remove("薪资执行");
  41. }
  42. }
  43. /// <summary>
  44. /// 输入框设置
  45. /// </summary>
  46. /// <param name="sender"></param>
  47. /// <param name="e"></param>
  48. void txtRp_Money_KeyPress(object sender, KeyPressEventArgs e)
  49. {
  50. if (!Char.IsNumber(e.KeyChar) && !Char.IsPunctuation(e.KeyChar) && !Char.IsControl(e.KeyChar))
  51. { e.Handled = true; }
  52. else if (Char.IsPunctuation(e.KeyChar))
  53. {
  54. if (e.KeyChar == '.')
  55. {
  56. if (((System.Windows.Forms.TextBox)sender).Text.LastIndexOf('.') != -1)
  57. { e.Handled = true; }
  58. }
  59. else
  60. { e.Handled = true; }
  61. }
  62. }
  63. /// <summary>
  64. /// 取消
  65. /// </summary>
  66. /// <param name="sender"></param>
  67. /// <param name="e"></param>
  68. void btnCanle_Click(object sender, EventArgs e)
  69. {
  70. this.Close();
  71. }
  72. /// <summary>
  73. /// 修改奖罚时间
  74. /// </summary>
  75. /// <param name="sender"></param>
  76. /// <param name="e"></param>
  77. void btnUpdateTime_Click(object sender, EventArgs e)
  78. {
  79. // 修改收款时间
  80. if (LYFZ.BLL.BLL_ErpUser.GetRights(LYFZ.BLL.BLL_ErpUser.CurrentUserRights.StaffAwardPunishCompetence, CustomAttributes.OperatingAuthority.UpdateAwardPunishTime))
  81. { this.txtRp_RPDatetime.Enabled = true; }
  82. else
  83. {
  84. LYFZ.Software.MainBusiness.DoorCityProcess.SuperSmallForm.AuthorizeLoginSuperSmallForm frm = new DoorCityProcess.SuperSmallForm.AuthorizeLoginSuperSmallForm("StaffAwardPunishCompetence", CustomAttributes.OperatingAuthority.UpdateAwardPunishTime);
  85. if (frm.ShowDialog() == DialogResult.OK)
  86. {
  87. if (LYFZ.BLL.BLL_ErpUser.GetRights(frm.CurrentAuthorizeUserRights.StaffAwardPunishCompetence, CustomAttributes.OperatingAuthority.UpdateAwardPunishTime, frm.User_BelongRoles))
  88. {
  89. frm.SetAuthorizationResult();
  90. this.txtRp_RPDatetime.Enabled = true; }
  91. else {
  92. frm.SetAuthorizationResult(String.Format("授权失败,授权人没有'{0}'权限", LYFZ.Software.MainBusiness.DoorCityProcess.SuperSmallForm.AuthorizeLoginSuperSmallForm.ConvertEnumToDescription(CustomAttributes.OperatingAuthority.UpdateAwardPunishTime).ToString()));
  93. }
  94. }
  95. }
  96. }
  97. /// <summary>
  98. /// 保存
  99. /// </summary>
  100. /// <param name="sender"></param>
  101. /// <param name="e"></param>
  102. void btnSave_Click(object sender, EventArgs e)
  103. {
  104. #region 判断不能为空
  105. if (string.IsNullOrEmpty(this.txtTsorder_OpenSingle.Text.Trim()))
  106. {
  107. MessageBoxCustom.Show("相关人员不能为空!");
  108. return;
  109. }
  110. if (string.IsNullOrEmpty(this.cmbRp_Type.Text))
  111. {
  112. MessageBoxCustom.Show("奖罚类别不能为空!");
  113. return;
  114. }
  115. if (string.IsNullOrEmpty(this.txtRp_Money.Text))
  116. {
  117. MessageBoxCustom.Show("奖罚金额不能为空!");
  118. return;
  119. }
  120. if (string.IsNullOrEmpty(this.cmbRp_Status.Text))
  121. {
  122. MessageBoxCustom.Show("是否执行不能为空!");
  123. return;
  124. }
  125. if (string.IsNullOrEmpty(this.txtRp_RPDatetime.DateValue))
  126. {
  127. MessageBoxCustom.Show("日期不能为空!");
  128. return;
  129. }
  130. if (string.IsNullOrEmpty(this.txtRp_PersonHandling.Text))
  131. {
  132. MessageBoxCustom.Show("经手人不能为空!");
  133. return;
  134. }
  135. #endregion
  136. #region 增加
  137. DateTime StrTime = SDateTime.Now;
  138. LYFZ.Model.Model_ErpRewardPunishment model = new Model.Model_ErpRewardPunishment();
  139. model.Rp_DividedShop = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.GetLocalCompanyInfoID();
  140. model.Rp_Type = this.cmbRp_Type.Text;
  141. model.Rp_RelevantPeople = this.txtTsorder_OpenSingle.Tag.ToString();
  142. model.Rp_Money = Convert.ToDecimal(this.txtRp_Money.Text);
  143. model.Rp_Status = this.cmbRp_Status.Text;
  144. model.Rp_RPDatetime = Convert.ToDateTime(this.txtRp_RPDatetime.DateValue);
  145. model.Rp_PersonHandling = StrUserID;
  146. model.Rp_Reason = "";
  147. model.Rp_Remark = txtRp_Remark.Text;
  148. model.Rp_CreateDatetime = StrTime;
  149. model.Rp_CreateName = StrUserID;
  150. if (rpbll.Add(model))
  151. {
  152. this.IsSaveed = true;
  153. MessageBoxCustom.Show("保存成功!可继续录入资料!");
  154. this.txtTsorder_OpenSingle.Text = "";
  155. this.cmbRp_Type.Text = "";
  156. this.txtRp_Money.Text = "";
  157. this.cmbRp_Status.Text = "";
  158. this.txtRp_Remark.Text = "";
  159. this.txtRp_RPDatetime.DateValue = SDateTime.Now.ToString("yyyy-MM-dd");
  160. this.txtRp_PersonHandling.Text = StrUserName;
  161. }
  162. else
  163. { MessageBoxCustom.Show("保存失败!"); }
  164. #endregion
  165. }
  166. }
  167. }