123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169 |
- 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;
- }
- /// <summary>
- /// 是否保存
- /// </summary>
- public bool IsSaveed = false;
- string StrUserID = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.LoginUserModel.User_EmployeeID;
- string StrUserName = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.LoginUserModel.User_Name;
- /// <summary>
- /// 窗体加载事件
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- 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("薪资执行");
- }
- }
- /// <summary>
- /// 输入框设置
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- 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; }
- }
- }
- /// <summary>
- /// 取消
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- void btnCanle_Click(object sender, EventArgs e)
- {
- this.Close();
- }
- /// <summary>
- /// 修改奖罚时间
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- 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()));
- }
- }
- }
- }
- /// <summary>
- /// 保存
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- 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
- }
- }
- }
|