代码修改
continuous-integration/drone/push Build is passing
Details
continuous-integration/drone/push Build is passing
Details
parent
1316dae035
commit
6d4ce03c10
|
@ -271,6 +271,13 @@ namespace IRaCIS.Core.Application.Service
|
||||||
&&x.ClinicalQuestionType!= ReadingQestionType.Group
|
&&x.ClinicalQuestionType!= ReadingQestionType.Group
|
||||||
&& x.ClinicalQuestionType != ReadingQestionType.Table).OrderByDescending(x=>x.IsCheckDate).ThenBy(x=>x.ShowOrder)
|
&& x.ClinicalQuestionType != ReadingQestionType.Table).OrderByDescending(x=>x.IsCheckDate).ThenBy(x=>x.ShowOrder)
|
||||||
.ProjectTo<TrialClinicalQuestionDto>(_mapper.ConfigurationProvider).ToListAsync();
|
.ProjectTo<TrialClinicalQuestionDto>(_mapper.ConfigurationProvider).ToListAsync();
|
||||||
|
if (_userInfo.IsEn_Us)
|
||||||
|
{
|
||||||
|
result.QuestionList.ForEach(x => {
|
||||||
|
x.GroupName = x.GroupEnName;
|
||||||
|
x.QuestionName = x.QuestionEnName;
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
var answers = await _clinicalQuestionAnswerRepository.Where(x => x.SubjectId == inDto.SubjectId && x.ClinicalDataTrialSetId == inDto.ClinicalDataTrialSetId)
|
var answers = await _clinicalQuestionAnswerRepository.Where(x => x.SubjectId == inDto.SubjectId && x.ClinicalDataTrialSetId == inDto.ClinicalDataTrialSetId)
|
||||||
.Select(x => new
|
.Select(x => new
|
||||||
|
|
Loading…
Reference in New Issue