using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Windows.Forms; namespace LYFZ.Software.MainBusiness.FinancialManagement.StaffAwardPunish { public partial class FrmStaffAwardPunishEntry : LYFZ.Software.UI.FinancialManagement.StaffAwardPunish.FrmStaffAwardPunishEntry { LYFZ.BLL.BLL_ErpRewardPunishment rpbll = new BLL.BLL_ErpRewardPunishment(); public FrmStaffAwardPunishEntry() { this.Shown += FrmStaffAwardPunishEntry_Shown; this.txtRp_Money.KeyPress += txtRp_Money_KeyPress; this.btnCanle.Click += btnCanle_Click; this.btnSave.Click += btnSave_Click; this.btnUpdateTime.Click += btnUpdateTime_Click; } /// /// 是否保存 /// public bool IsSaveed = false; string StrUserID = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.LoginUserModel.User_EmployeeID; string StrUserName = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.LoginUserModel.User_Name; /// /// 窗体加载事件 /// /// /// void FrmStaffAwardPunishEntry_Shown(object sender, EventArgs e) { LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.BindComboBoxTreeView_DepartmentAndEmployee(this.txtTsorder_OpenSingle, IsFirstNodeNull: true); this.txtRp_RPDatetime.DateValue = SDateTime.Now.ToString("yyyy-MM-dd"); this.txtRp_PersonHandling.Text = StrUserName; if (!LYFZSS.SystemSpecterPossessed.ISystemSpecterPossessed.LargeResolveSystemSpecterPossessed(LYFZSS.SystemSpecterType.SST_D)) { this.cmbRp_Status.Items.Remove("薪资执行"); } } /// /// 输入框设置 /// /// /// void txtRp_Money_KeyPress(object sender, KeyPressEventArgs e) { if (!Char.IsNumber(e.KeyChar) && !Char.IsPunctuation(e.KeyChar) && !Char.IsControl(e.KeyChar)) { e.Handled = true; } else if (Char.IsPunctuation(e.KeyChar)) { if (e.KeyChar == '.') { if (((System.Windows.Forms.TextBox)sender).Text.LastIndexOf('.') != -1) { e.Handled = true; } } else { e.Handled = true; } } } /// /// 取消 /// /// /// void btnCanle_Click(object sender, EventArgs e) { this.Close(); } /// /// 修改奖罚时间 /// /// /// void btnUpdateTime_Click(object sender, EventArgs e) { // 修改收款时间 if (LYFZ.BLL.BLL_ErpUser.GetRights(LYFZ.BLL.BLL_ErpUser.CurrentUserRights.StaffAwardPunishCompetence, CustomAttributes.OperatingAuthority.UpdateAwardPunishTime)) { this.txtRp_RPDatetime.Enabled = true; } else { LYFZ.Software.MainBusiness.DoorCityProcess.SuperSmallForm.AuthorizeLoginSuperSmallForm frm = new DoorCityProcess.SuperSmallForm.AuthorizeLoginSuperSmallForm("StaffAwardPunishCompetence", CustomAttributes.OperatingAuthority.UpdateAwardPunishTime); if (frm.ShowDialog() == DialogResult.OK) { if (LYFZ.BLL.BLL_ErpUser.GetRights(frm.CurrentAuthorizeUserRights.StaffAwardPunishCompetence, CustomAttributes.OperatingAuthority.UpdateAwardPunishTime, frm.User_BelongRoles)) { frm.SetAuthorizationResult(); this.txtRp_RPDatetime.Enabled = true; } else { frm.SetAuthorizationResult(String.Format("授权失败,授权人没有'{0}'权限", LYFZ.Software.MainBusiness.DoorCityProcess.SuperSmallForm.AuthorizeLoginSuperSmallForm.ConvertEnumToDescription(CustomAttributes.OperatingAuthority.UpdateAwardPunishTime).ToString())); } } } } /// /// 保存 /// /// /// void btnSave_Click(object sender, EventArgs e) { #region 判断不能为空 if (string.IsNullOrEmpty(this.txtTsorder_OpenSingle.Text.Trim())) { MessageBoxCustom.Show("相关人员不能为空!"); return; } if (string.IsNullOrEmpty(this.cmbRp_Type.Text)) { MessageBoxCustom.Show("奖罚类别不能为空!"); return; } if (string.IsNullOrEmpty(this.txtRp_Money.Text)) { MessageBoxCustom.Show("奖罚金额不能为空!"); return; } if (string.IsNullOrEmpty(this.cmbRp_Status.Text)) { MessageBoxCustom.Show("是否执行不能为空!"); return; } if (string.IsNullOrEmpty(this.txtRp_RPDatetime.DateValue)) { MessageBoxCustom.Show("日期不能为空!"); return; } if (string.IsNullOrEmpty(this.txtRp_PersonHandling.Text)) { MessageBoxCustom.Show("经手人不能为空!"); return; } #endregion #region 增加 DateTime StrTime = SDateTime.Now; LYFZ.Model.Model_ErpRewardPunishment model = new Model.Model_ErpRewardPunishment(); model.Rp_DividedShop = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.GetLocalCompanyInfoID(); model.Rp_Type = this.cmbRp_Type.Text; model.Rp_RelevantPeople = this.txtTsorder_OpenSingle.Tag.ToString(); model.Rp_Money = Convert.ToDecimal(this.txtRp_Money.Text); model.Rp_Status = this.cmbRp_Status.Text; model.Rp_RPDatetime = Convert.ToDateTime(this.txtRp_RPDatetime.DateValue); model.Rp_PersonHandling = StrUserID; model.Rp_Reason = ""; model.Rp_Remark = txtRp_Remark.Text; model.Rp_CreateDatetime = StrTime; model.Rp_CreateName = StrUserID; if (rpbll.Add(model)) { this.IsSaveed = true; MessageBoxCustom.Show("保存成功!可继续录入资料!"); this.txtTsorder_OpenSingle.Text = ""; this.cmbRp_Type.Text = ""; this.txtRp_Money.Text = ""; this.cmbRp_Status.Text = ""; this.txtRp_Remark.Text = ""; this.txtRp_RPDatetime.DateValue = SDateTime.Now.ToString("yyyy-MM-dd"); this.txtRp_PersonHandling.Text = StrUserName; } else { MessageBoxCustom.Show("保存失败!"); } #endregion } } }