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;
}
///
/// 是否保存
///
public bool IsSaveed = false;
///
/// 要修改的ID
///
public string StrOrderID;
string StrUserID = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.LoginUserModel.User_EmployeeID;
string StrUserName = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.LoginUserModel.User_Name;
///
/// 窗体加载事件
///
///
///
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("薪资执行");
}
}
///
/// 输入框设置
///
///
///
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 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
}
}
}