Uat_Study
parent
f698d77719
commit
80b877879c
|
@ -150,12 +150,12 @@ namespace IRaCIS.Application.Services
|
||||||
//_userInfo.UserTypeId
|
//_userInfo.UserTypeId
|
||||||
|
|
||||||
return await _trialDocumentRepository.Where(x => x.TrialId == inDto.TrialId
|
return await _trialDocumentRepository.Where(x => x.TrialId == inDto.TrialId
|
||||||
&& x.TrialDocConfirmedUserList.Any(y => y.ConfirmUserId == _userInfo.Id)
|
&& x.TrialDocConfirmedUserList.Any(y => y.ConfirmUserId == _userInfo.Id && y.ConfirmTime != null)
|
||||||
&& x.NeedConfirmedUserTypeList.Any(y => y.NeedConfirmUserTypeId == _userInfo.UserTypeId))
|
&& x.NeedConfirmedUserTypeList.Any(y => y.NeedConfirmUserTypeId == _userInfo.UserTypeId))
|
||||||
.Where(t => t.FileType.Code == "2" || t.FileType.Code == "6")
|
.Where(t => t.FileType.Code == "2" || t.FileType.Code == "6").IgnoreQueryFilters()
|
||||||
.Select(x => new GetManualListOutDto()
|
.Select(x => new GetManualListOutDto()
|
||||||
{
|
{
|
||||||
Id=x.Id,
|
Id = x.Id,
|
||||||
Name = x.Name,
|
Name = x.Name,
|
||||||
Path = x.Path
|
Path = x.Path
|
||||||
}).ToListAsync();
|
}).ToListAsync();
|
||||||
|
|
Loading…
Reference in New Issue