提交代码

This commit is contained in:
2024-10-12 10:00:46 +08:00
parent f3491ae4b3
commit a9edf59cf3
29 changed files with 6756 additions and 133 deletions
@@ -205,6 +205,34 @@ namespace FineUIPro.Web.ZHGL.Information
//}
#endregion
#region
if (Type == "ActionWorkLedger")//中央企业安全生产治本攻坚三年行动工作台账
{
var report = BLL.ActionWorkLedgerService.GetActionWorkLedgerById(Id);
if (report != null)
{
SetFlowData(Const.ActionWorkLedgerMenuId, this.Id, handleMan);
report.HandleState = handleStates;
report.HandleMan = handleMan;
BLL.ActionWorkLedgerService.UpdateActionWorkLedger(report);
}
}
#endregion
#region
if (Type == "SafetyProductionEvaluation")//中央企业安全生产管理评价工作调度台账
{
var report = BLL.SafetyProductionEvaluationService.GetSafetyProductionEvaluationById(Id);
if (report != null)
{
SetFlowData(Const.SafetyProductionEvaluationMenuId, this.Id, handleMan);
report.HandleState = handleStates;
report.HandleMan = handleMan;
BLL.SafetyProductionEvaluationService.UpdateSafetyProductionEvaluation(report);
}
}
#endregion
ShowNotify("提交成功!", MessageBoxIcon.Success);
PageContext.RegisterStartupScript(ActiveWindow.GetHidePostBackReference());
}