123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148 |
- 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 FrmStaffAwardPunishUpdate : LYFZ.Software.UI.FinancialManagement.StaffAwardPunish.FrmStaffAwardPunishUpdate
- {
- LYFZ.BLL.BLL_ErpRewardPunishment rpbll = new BLL.BLL_ErpRewardPunishment();
- public FrmStaffAwardPunishUpdate()
- {
- this.Shown += FrmStaffAwardPunishUpdate_Shown;
- this.txtRp_Money.KeyPress += txtRp_Money_KeyPress;
- this.btnCanle.Click += btnCanle_Click;
- this.btnSave.Click += btnSave_Click;
- }
- /// <summary>
- /// 是否保存
- /// </summary>
- public bool IsSaveed = false;
- /// <summary>
- /// 要修改的ID
- /// </summary>
- public string StrOrderID;
- 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 FrmStaffAwardPunishUpdate_Shown(object sender, EventArgs e)
- {
- LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.BindComboBoxTreeView_DepartmentAndEmployee(this.txtTsorder_OpenSingle, IsFirstNodeNull: true);
- if (!string.IsNullOrEmpty(StrOrderID))
- {
- DataTable dt = rpbll.GetList("Id=" + StrOrderID + "").Tables[0];
- txtTsorder_OpenSingle.TagFindText(dt.Rows[0]["Rp_RelevantPeople"].ToString());
- cmbRp_Type.Text = dt.Rows[0]["Rp_Type"].ToString();
- txtRp_Money.Text = dt.Rows[0]["Rp_Money"].ToString();
- cmbRp_Status.Text = dt.Rows[0]["Rp_Status"].ToString();
- txtRp_RPDatetime.Text = Convert.ToDateTime(dt.Rows[0]["Rp_RPDatetime"]).ToString("yyyy-MM-dd");
- txtRp_PersonHandling.Text = StrUserName;
- txtRp_Remark.Text = dt.Rows[0]["Rp_Remark"].ToString();
- }
- 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 btnSave_Click(object sender, EventArgs e)
- {
- #region 判断不能为空
- if (string.IsNullOrEmpty(txtTsorder_OpenSingle.Text.Trim()))
- {
- MessageBoxCustom.Show("相关人员不能为空!");
- return;
- }
- if (string.IsNullOrEmpty(cmbRp_Type.Text))
- {
- MessageBoxCustom.Show("奖罚类别不能为空!");
- return;
- }
- if (string.IsNullOrEmpty(txtRp_Money.Text))
- {
- MessageBoxCustom.Show("奖罚金额不能为空!");
- return;
- }
- if (string.IsNullOrEmpty(cmbRp_Status.Text))
- {
- MessageBoxCustom.Show("是否执行不能为空!");
- return;
- }
- if (string.IsNullOrEmpty(txtRp_RPDatetime.Text))
- {
- MessageBoxCustom.Show("日期不能为空!");
- return;
- }
- if (string.IsNullOrEmpty(txtRp_PersonHandling.Text))
- {
- MessageBoxCustom.Show("经手人不能为空!");
- return;
- }
- #endregion
- #region 修改
- DateTime StrTime = SDateTime.Now;
- LYFZ.Model.Model_ErpRewardPunishment model = rpbll.GetModel(Convert.ToInt32(StrOrderID));
- 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 = StrTime;
- model.Rp_PersonHandling = StrUserID;
- model.Rp_Reason = "";
- model.Rp_Remark = this.txtRp_Remark.Text;
- model.Rp_UpdateDatetime = StrTime;
- model.Rp_UpdateName = StrUserID;
- if (rpbll.Update(model))
- {
- this.IsSaveed = true;
- MessageBoxCustom.Show("保存成功!");
- }
- else
- { MessageBoxCustom.Show("保存失败!"); }
- #endregion
- }
- }
- }
|