using LYFZ.ComponentLibrary; using System; using System.Collections; 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 { public partial class FrmStaffAwardPunish : LYFZ.Software.UI.FinancialManagement.FrmStaffAwardPunish { LYFZ.BLL.BLL_ErpRewardPunishment rpbll = new BLL.BLL_ErpRewardPunishment(); public FrmStaffAwardPunish() { this.Shown += FrmStaffAwardPunish_Shown; this.btnQuery.Click += btnQuery_Click; this.btnEntry.Click += btnEntry_Click; this.btnUpdate.Click += btnUpdate_Click; this.dgvData.MouseDoubleClick += dgvData_MouseDoubleClick; this.btnDelete.Click += btnDelete_Click; this.btnClose.Click += btnClose_Click; this.chkPenalty.Click += chkPenalty_Click; this.chkReward.Click += chkReward_Click; this.chkExecuteNot.Click += chkExecuteNot_Click; this.chkExecuteOK.Click += chkExecuteOK_Click; this.btn_print.Click += btn_print_Click; this.Resize += FrmStaffAwardPunish_Resize; } /// /// 打印员工奖罚单; /// /// /// void btn_print_Click(object sender, EventArgs e) { if ( dgvData.CurrentRow != null ) { Hashtable hashtable = new Hashtable(); hashtable["CurrentRow"] = dgvData.CurrentRow; LYFZ.Software.MainBusiness.ReportPrint.ReportFixedFormat.PrintFixedFormat(LYFZ.EnumPublic.PrintTypeEnum.员工奖罚, hashtable); } else { MessageBox.Show("请选择要打印的行"); } } /// /// 窗体加载事件 /// /// /// void FrmStaffAwardPunish_Shown(object sender, EventArgs e) { this.dtpDateTimeStart.DateValue = SDateTime.Now.ToString("yyyy-MM-dd"); this.dtpDateTimeEnd.DateValue = this.dtpDateTimeStart.DateValue; LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.BindComboBoxTreeView_DepartmentAndEmployee(this.cmbtreevPenaltyAndRewardName, IsFirstNodeNull: true, IsShowResign: false); this.btnEntry.Enabled = LYFZ.BLL.BLL_ErpUser.GetRights(LYFZ.BLL.BLL_ErpUser.CurrentUserRights.StaffAwardPunishCompetence, CustomAttributes.OperatingAuthority.Add); this.btnUpdate.Enabled = LYFZ.BLL.BLL_ErpUser.GetRights(LYFZ.BLL.BLL_ErpUser.CurrentUserRights.StaffAwardPunishCompetence, CustomAttributes.OperatingAuthority.Update); this.btnDelete.Enabled = LYFZ.BLL.BLL_ErpUser.GetRights(LYFZ.BLL.BLL_ErpUser.CurrentUserRights.StaffAwardPunishCompetence, CustomAttributes.OperatingAuthority.Delete); this.PublicFunctionRows(); ///控制财务管理员工奖罚薪资执行的版本权 List hideControl = new List(); //LYFZSS.SystemSpecterPossessed.ISystemSpecterPossessed.GetMySystemSpecter = LYFZSS.SystemSpecterType.SST_D; hideControl.Add(this.chkExecuteOK); LYFZ.Software.MainBusiness.VersionControl.StaticVersion.BindVersionShowHideControl(VersionControl.VersionFunctionEnum.财务管理薪资执行, hideControl, null, null); } /// /// 查询 /// /// /// void btnQuery_Click(object sender, EventArgs e) { this.PublicFunctionRows(); } /// /// 录入 /// /// /// void btnEntry_Click(object sender, EventArgs e) { LYFZ.Software.MainBusiness.FinancialManagement.StaffAwardPunish.FrmStaffAwardPunishEntry frm = new StaffAwardPunish.FrmStaffAwardPunishEntry(); frm.ShowDialog(); if (frm.IsSaveed) { this.PublicFunctionRows(); } } /// /// 修改 /// /// /// void btnUpdate_Click(object sender, EventArgs e) { if (this.dgvData.SelectedRows.Count == 0) { MessageBoxCustom.Show("请选择你要修改的数据!"); return; } LYFZ.Software.MainBusiness.FinancialManagement.StaffAwardPunish.FrmStaffAwardPunishUpdate frm = new StaffAwardPunish.FrmStaffAwardPunishUpdate(); frm.StrOrderID = this.dgvData.CurrentRow.Cells["ID"].Value.ToString(); frm.ShowDialog(); if (frm.IsSaveed) { this.PublicFunctionRows(); } } /// /// 双击列表修改 /// /// /// void dgvData_MouseDoubleClick(object sender, MouseEventArgs e) { if (e.Location.Y > this.dgvData.ColumnHeadersHeight) { if (this.dgvData.SelectedRows.Count == 0) { MessageBoxCustom.Show("请选择你要修改的数据!"); return; } this.btnUpdate_Click(this, null); } } /// /// 删除 /// /// /// void btnDelete_Click(object sender, EventArgs e) { if (this.dgvData.SelectedRows.Count == 0) { MessageBoxCustom.Show("请选择你要删除的数据!"); return; } if (MessageBoxCustom.Show("你确定要删除吗?", "删除提示", MessageBoxButtons.YesNo) == DialogResult.Yes) { if (rpbll.Delete(Convert.ToInt32(this.dgvData.CurrentRow.Cells["ID"].Value))) { // 写入操作日志 string logsContent = "删除奖罚相关人员:" + this.dgvData.CurrentRow.Cells["相关人员"].Value.ToString() + " 金额为:" + this.dgvData.CurrentRow.Cells["奖罚金额"].Value.ToString(); LYFZ.BLL.BLL_ErpSystemLogs.WriteSystemLog(LYFZ.EnumPublic.SystemLogsType.删除员工奖罚, logsContent, LYFZ.BLL.BLL_ErpUser.UsersModel.User_EmployeeID, LYFZ.BLL.BLL_ErpUser.UsersModel.User_Name); MessageBoxCustom.Show("删除成功!"); this.PublicFunctionRows(); } } } /// /// 关闭 /// /// /// void btnClose_Click(object sender, EventArgs e) { this.Close(); } /// /// 奖 /// /// /// void chkPenalty_Click(object sender, EventArgs e) { this.chkExecuteNot.Checked = false; this.chkExecuteOK.Checked = false; this.chkReward.Checked = false; this.PublicFunctionRows(); } /// /// 惩 /// /// /// void chkReward_Click(object sender, EventArgs e) { this.chkExecuteNot.Checked = false; this.chkExecuteOK.Checked = false; this.chkPenalty.Checked = false; this.PublicFunctionRows(); } /// /// 未执行 /// /// /// void chkExecuteNot_Click(object sender, EventArgs e) { this.chkReward.Checked = false; this.chkExecuteOK.Checked = false; this.chkPenalty.Checked = false; this.PublicFunctionRows(); } /// /// 已执行 /// /// /// void chkExecuteOK_Click(object sender, EventArgs e) { this.chkReward.Checked = false; this.chkExecuteNot.Checked = false; this.chkPenalty.Checked = false; this.PublicFunctionRows(); } /// /// 窗体大小发生变化 /// /// /// void FrmStaffAwardPunish_Resize(object sender, EventArgs e) { switch (this.panelExecuteOK.Location.Y) { case 5: this.flowLayoutPanel1.Height = 40; break; case 39: this.flowLayoutPanel1.Height = 73; break; } } /// /// 绑定数据 /// void PublicFunctionRows() { string StrWhere = " Where 1 = 1"; if (!string.IsNullOrEmpty(this.cmbtreevPenaltyAndRewardName.Text.Trim())) { StrWhere += " And Rp_RelevantPeople='" + this.cmbtreevPenaltyAndRewardName.Tag.ToString().Trim() + "'"; } if (this.chkPenalty.Checked) { StrWhere += " And Rp_Type='惩罚'"; } if (this.chkReward.Checked) { StrWhere += " And Rp_Type='奖励'"; } if (this.chkExecuteNot.Checked) { StrWhere += " And Rp_Status='" + this.chkExecuteNot.Text.Trim() + "'"; } if (this.chkExecuteOK.Checked) { StrWhere += " And Rp_Status='" + this.chkExecuteOK.Text.Trim() + "'"; } if (!string.IsNullOrEmpty(this.dtpDateTimeStart.DateValue) && !string.IsNullOrEmpty(this.dtpDateTimeEnd.DateValue)) { StrWhere += LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.GetDateTime("Rp_RPDatetime", this.dtpDateTimeStart.DateValue, this.dtpDateTimeEnd.DateValue); } DataTable newTable = new DataTable(); LYFZ.ComponentLibrary.FrmLoadHandling.LoadDoWorkMethod(delegate(object obj, BackgroundWorker backgroundWorker) { newTable = LYFZ.BLL.BLL_ErpOrderView.GetData_FinancialManagementUserRewardPunishment(StrWhere, ""); }); #region this.dgvData.DataColumns(newTable.Columns, strHideField: "ID"); this.dgvData.Columns["相关人员"].Width = 120; this.dgvData.Columns["执行日期"].Width = 120; this.dgvData.Columns["奖罚类型"].Width = 120; this.dgvData.Columns["奖罚金额"].Width = 120; this.dgvData.Columns["是否执行"].Width = 120; this.dgvData.Columns["录单人"].Width = 120; this.dgvData.FillLastColumn(); for (int t = 0; t < newTable.Rows.Count; t++) { DataGridViewRow dgvr = new DataGridViewRow(); DataGridViewCell cell = null; cell = new DataGridViewTextBoxCell(); cell.Value = newTable.Rows[t]["ID"].ToString().Trim(); ; dgvr.Cells.Add(cell); cell = new DataGridViewTextBoxCell(); cell.Value = LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.GetUserName(newTable.Rows[t]["相关人员"]); dgvr.Cells.Add(cell); cell = new DataGridViewTextBoxCell(); cell.Value = newTable.Rows[t]["奖罚类型"].ToString().Trim(); dgvr.Cells.Add(cell); cell = new DataGridViewTextBoxCell(); cell.Value = newTable.Rows[t]["奖罚金额"].ToString().Trim(); dgvr.Cells.Add(cell); cell = new DataGridViewTextBoxCell(); cell.Value = newTable.Rows[t]["是否执行"].ToString().Trim(); dgvr.Cells.Add(cell); cell = new DataGridViewTextBoxCell(); cell.Value = Convert.ToDateTime(newTable.Rows[t]["执行日期"]).ToString("yyyy-MM-dd"); dgvr.Cells.Add(cell); cell = new DataGridViewTextBoxCell(); cell.Value = LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.GetUserName(newTable.Rows[t]["录单人"]); dgvr.Cells.Add(cell); cell = new DataGridViewTextBoxCell(); cell.Value = newTable.Rows[t]["备注"].ToString().Trim(); dgvr.Cells.Add(cell); this.dgvData.Rows.Add(dgvr); } #endregion this.dgvData.ClearSelection(); } } }