0316-002-gaofei
This commit is contained in:
parent
ab09cf21d2
commit
1ca2236fc9
|
@ -214,7 +214,7 @@ namespace FineUIPro.Web.PZHGL.GJSX
|
|||
Grid2Binging();
|
||||
}
|
||||
}
|
||||
else if(gjsx.User_ReceiveID.Contains(this.CurrUser.UserId)) //接收者
|
||||
else if (!string.IsNullOrEmpty(gjsx.User_ReceiveID) && gjsx.User_ReceiveID.Contains(this.CurrUser.UserId)) //接收者
|
||||
{
|
||||
rblIsClosed.Visible = false;
|
||||
btnSave.Visible = false;
|
||||
|
@ -231,7 +231,7 @@ namespace FineUIPro.Web.PZHGL.GJSX
|
|||
btnSave.Visible = false;
|
||||
btnsubmit.Visible = false;
|
||||
}
|
||||
if (gjsx.User_Acceptance.Contains(this.CurrUser.UserId)) //如果当前登录人为验收人
|
||||
if (!string.IsNullOrEmpty(gjsx.User_Acceptance) && gjsx.User_Acceptance.Contains(this.CurrUser.UserId)) //如果当前登录人为验收人
|
||||
{
|
||||
rblIsClosed.Visible = true;
|
||||
btnSave.Visible = false;
|
||||
|
|
Loading…
Reference in New Issue