webservice 调用修改
This commit is contained in:
@@ -88,7 +88,7 @@
|
||||
|
||||
<f:FormRow MarginTop="10px">
|
||||
<Items>
|
||||
<f:DropDownList runat="server" Width="300px" Label="专业工程师确认" LabelWidth="130px" ID="drpAudit" ShowRedStar="true" Required="true" EmptyText="--请选择--">
|
||||
<f:DropDownList runat="server" Width="300px" Label="质量经理确认" LabelWidth="130px" ID="drpAudit" ShowRedStar="true" Required="true" EmptyText="--请选择--">
|
||||
</f:DropDownList>
|
||||
</Items>
|
||||
</f:FormRow>
|
||||
|
||||
@@ -159,7 +159,7 @@ namespace FineUIPro.Web.CQMS.Comprehensive
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 加载专业工程师
|
||||
/// 加载质量经理
|
||||
/// </summary>
|
||||
public void LoadAuditSelect()
|
||||
{
|
||||
@@ -171,7 +171,7 @@ namespace FineUIPro.Web.CQMS.Comprehensive
|
||||
join p in db.Project_ProjectUser
|
||||
on x.UserId equals p.UserId
|
||||
where y.UnitId == Const.UnitId_CD && p.ProjectId == CurrUser.LoginProjectId && y.ProjectId == CurrUser.LoginProjectId
|
||||
where p.RoleId.Contains(Const.ZBCNEngineer)
|
||||
where p.RoleId.Contains(Const.QAManager)
|
||||
select new { UserId = x.UserId, UserName = x.UserName };
|
||||
drpAudit.DataValueField = "UserId";
|
||||
drpAudit.DataTextField = "UserName";
|
||||
|
||||
Reference in New Issue
Block a user