修改安全实施计划

This commit is contained in:
2023-07-12 07:10:19 +08:00
parent a873d6c064
commit 227b1472c9
7 changed files with 85 additions and 106 deletions
@@ -74,6 +74,10 @@ namespace FineUIPro.Web.ZHGL.Plan
this.drpReviewMan.Hidden = false;
this.drpReviewMan.SelectedValue = actionPlanList.ReviewMan;
}
else if (actionPlanList.IsCompanyReview == true)
{
this.rblIsReview.SelectedValue = "True2";
}
else
{
this.rblIsReview.SelectedValue = "False";
@@ -103,6 +107,12 @@ namespace FineUIPro.Web.ZHGL.Plan
var list = ActionPlanListApproveService.getListData(ActionPlanListId);
gvApprove.DataSource = list;
gvApprove.DataBind();
var approves = BLL.ActionPlanListApproveService.GetReviewings(this.ActionPlanListId, actionPlanList.Edition.Value);
if (approves.Count == 0)
{
this.drpPerson.Hidden = true;
this.rblIsCompanyReview.Hidden = true;
}
WindowAtt_Close(null, null);
}
}