Compare commits
No commits in common. "c4a0e47a84f2bf082b7a0fd574c3fb7093872396" and "1715d4d0561d80a531b4ae43eae9b3d895050eab" have entirely different histories.
c4a0e47a84
...
1715d4d056
|
@ -934,16 +934,13 @@ namespace IRaCIS.Application.Services
|
|||
result.TaskNum = visitTaskInfo.VisitTaskNum;
|
||||
result.QuestionMarkInfoList=await _readingTaskQuestionMarkRepository.Where(x => x.VisitTaskId == inDto.VisitTaskId).ProjectTo<QuestionMarkInfo>(_mapper.ConfigurationProvider)
|
||||
.ToListAsync();
|
||||
var spleenLength = await _readingTaskQuestionAnswerRepository.Where(x => x.VisitTaskId == inDto.VisitTaskId && x.ReadingQuestionTrial.QuestionType == QuestionType.SpleenLength).Select(x => x.Answer).FirstOrDefaultAsync();
|
||||
|
||||
return (result, new
|
||||
return (result, new
|
||||
{
|
||||
readingTaskState = visitTaskInfo.ReadingTaskState,
|
||||
FormType = criterionInfo.FormType,
|
||||
TaskNum = visitTaskInfo.VisitTaskNum,
|
||||
SpleenLength= spleenLength,
|
||||
|
||||
}); ;
|
||||
}); ;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
|
|
Loading…
Reference in New Issue