This commit is contained in:
he
2022-09-01 16:37:06 +08:00
parent 77eaf10a23
commit 347cc01262
@@ -352,7 +352,7 @@ namespace IRaCIS.Application.Services
#region
var qusetionList = await _readingQuestionTrialRepository.Where(x=>x.ReadingQuestionCriterionTrialId== criterion.Id)
.ProjectTo<TrialReadQuestionData>(_mapper.ConfigurationProvider).Where(x=>x.IsShowInDicom|| x.Type == "group").OrderBy(x => x.ShowOrder).ToListAsync();
.ProjectTo<TrialReadQuestionData>(_mapper.ConfigurationProvider).Where(x=>x.IsShowInDicom && x.Type != "table").OrderBy(x => x.ShowOrder).ToListAsync();
var answers = await _readingTaskQuestionAnswerRepository.Where(x => x.VisitTaskId == inDto.VisitTaskId).ToListAsync();