修改施工方案和关键事项

This commit is contained in:
2024-10-12 15:27:37 +08:00
parent a360cb9448
commit d35d9efdcb
54 changed files with 10572 additions and 2051 deletions
@@ -59,7 +59,7 @@ namespace FineUIPro.Web.ZHGL.Information
/// </summary>
private void BindGrid()
{
string unitId = BLL.Const.UnitId_CWCEC;
string unitId = Const.UnitId_CWCEC;
string strSql = @"SELECT UserId,UserName,UserCode,role.RoleName"
+ @" FROM Sys_User AS users"
@@ -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());
}