代码修改

This commit is contained in:
he
2024-09-04 09:50:51 +08:00
parent 327874d396
commit 35d7202fc3
3 changed files with 9 additions and 4 deletions
@@ -216,7 +216,7 @@ namespace IRaCIS.Application.Services
var query = _readingClinicalDataRepository.AsQueryable();
if (inDto.StudyId != null)
{
query = query.Where(x => x.StudyId == inDto.StudyId.Value && x.TrialId == inDto.TrialId && x.SubjectId == inDto.SubjectId);
query = query.Where(x => x.StudyId == inDto.StudyId.Value && x.ReadingId == inDto.SubjectVisitId);
}
else
{