@@ -821,7 +821,7 @@ namespace IRaCIS.Core.Application.Service.Common
|
||||
.WhereIf(inQuery.SubjectVisitId != null, t => t.SubjectId == inQuery.SubjectVisitId)
|
||||
.WhereIf(inQuery.TrialSiteId != null, t => t.Subject.TrialSiteId == inQuery.TrialSiteId)
|
||||
.WhereIf(inQuery.IsDicom != null, t => t.IsDicom == inQuery.IsDicom)
|
||||
.WhereIf(!string.IsNullOrWhiteSpace(inQuery.Uploader), t => t.Uploader.UserName.Contains(inQuery.Uploader))
|
||||
.WhereIf(!string.IsNullOrWhiteSpace(inQuery.Uploader), t => t.CreateUser.UserName.Contains(inQuery.Uploader))
|
||||
.WhereIf(inQuery.IsSuccess != null, t => t.IsSuccess == inQuery.IsSuccess)
|
||||
.WhereIf(!string.IsNullOrWhiteSpace(inQuery.StudyCode), t => t.StudyCode.Contains(inQuery.StudyCode))
|
||||
.Select(t => new UnionStudyMonitorExportDto()
|
||||
@@ -838,7 +838,7 @@ namespace IRaCIS.Core.Application.Service.Common
|
||||
|
||||
IsDicom = t.IsDicom,
|
||||
|
||||
Uploader = t.Uploader.UserName,
|
||||
Uploader = t.CreateUser.UserName,
|
||||
|
||||
IP = t.IP,
|
||||
|
||||
|
||||
Reference in New Issue
Block a user