Uat_Study
he 2022-09-01 16:37:06 +08:00
parent 77eaf10a23
commit 347cc01262
1 changed files with 1 additions and 1 deletions

View File

@ -352,7 +352,7 @@ namespace IRaCIS.Application.Services
#region 获取问题及答案 #region 获取问题及答案
var qusetionList = await _readingQuestionTrialRepository.Where(x=>x.ReadingQuestionCriterionTrialId== criterion.Id) 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(); var answers = await _readingTaskQuestionAnswerRepository.Where(x => x.VisitTaskId == inDto.VisitTaskId).ToListAsync();