This commit is contained in:
geh
2026-09-14 15:58:12 +08:00
parent a815e09879
commit 77f61d7e06
128 changed files with 25181 additions and 960 deletions
@@ -207,9 +207,18 @@ namespace FineUIPro.Web.CQMS.Check
}
ShowNotify("保存成功!", MessageBoxIcon.Success);
//更新三库事故事件
string message = string.Empty;
SanKuDataSummaryReportService.UpdateSafetyRewardRecord(RewardAndPunish.RewardAndPunishID, ref message);
if (!string.IsNullOrWhiteSpace(message))
{
ShowNotify(message, MessageBoxIcon.Warning);
}
PageContext.RegisterStartupScript(ActiveWindow.GetHidePostBackReference());
}
#region
/// <summary>
@@ -259,12 +268,13 @@ namespace FineUIPro.Web.CQMS.Check
{
if (this.drpType.SelectedValue == "1")
{
ConstValue.InitConstValueDropDownList(this.drpRewardAndPunishType, "RewardType", false);
ConstValue.InitConstValueDropDownList(this.drpRewardAndPunishType,BLL.ConstValue.Group_RewardType, false);
}
else
{
ConstValue.InitConstValueDropDownList(this.drpRewardAndPunishType, "PunishType", false);
ConstValue.InitConstValueDropDownList(this.drpRewardAndPunishType, BLL.ConstValue.Group_PunishType, false);
}
}
}
}