IRC_NewDev
he 2023-07-18 13:48:19 +08:00
parent fc5f68bd7c
commit 6900433496
1 changed files with 1 additions and 1 deletions

View File

@ -443,7 +443,7 @@ namespace IRaCIS.Core.Application
UrgentCount = t.SubjectVisitList.Where(u => u.IsBaseLine && u.SubmitState != SubmitStateEnum.Submitted && u.IsUrgent).Count(),
ToBeDealedCount = t.ReadingClinicalDataList.Where(x=>!x.IsSign&& x.ClinicalDataTrialSet.UploadRole == UploadRole.CRC && x.ClinicalDataTrialSet.ClinicalDataLevel != ClinicalLevel.SubjectVisit).Count(),
ReadModuleCount=t.ReadModuleList.Count(),
}).Where(x=>x.ToBeDealedCount>0).Where(x => x.ReadModuleCount > 0);
}).Where(x=>x.ToBeDealedCount>0|| x.ReadModuleCount > 0);
var result = await query.ToPagedListAsync(inQuery.PageIndex, inQuery.PageSize, string.IsNullOrEmpty(inQuery.SortField) ? nameof(ImageClinicalDataToBeDoneDto.TrialId) : inQuery.SortField, inQuery.Asc);