临床数据修改
continuous-integration/drone/push Build is passing Details

IRC_NewDev
he 2023-12-12 13:56:20 +08:00
parent 53cb22c474
commit c93655d199
2 changed files with 2 additions and 1 deletions

View File

@ -541,6 +541,7 @@ namespace IRaCIS.Core.Application.Service
var query = _readModuleRepository.Where(x => x.TrialId == inDto.TrialId)
.WhereIf(inDto.ReadModuleId==null,x=>x.TrialReadingCriterion.IsConfirm)
.WhereIf(inDto.ReadModuleId != null, x => x.Id == inDto.ReadModuleId)
.WhereIf(inDto.IsCRCConfirm != null, x => x.IsCRCConfirm == inDto.IsCRCConfirm)
.WhereIf(inDto.IsPMConfirm != null, x => x.IsPMConfirm == inDto.IsPMConfirm)

View File

@ -524,7 +524,7 @@ namespace IRaCIS.Core.Application
PageIndex = 1,
PageSize = 9999,
})).CurrentPageData.SelectMany(x => x.ClinicalFormList).Count();
})).CurrentPageData.Count();
}