Uat_Study
he 2022-10-14 11:47:45 +08:00
parent 0bfecdc816
commit 1b5c6dec28
1 changed files with 1 additions and 1 deletions

View File

@ -2177,7 +2177,7 @@ namespace IRaCIS.Application.Services
var unableEvaluateRowIds = await _readingTableQuestionAnswerRepository.Where(x => x.VisitTaskId == inDto.VisitTaskId && x.Answer== TargetState.UnableEvaluate.GetEnumInt()
&& x.ReadingTableQuestionTrial.QuestionMark == QuestionMark.State
)
.Select(x.RowId).Distinct().ToListAsync();
.Select(x=>x.RowId).Distinct().ToListAsync();
IEnumerable<string> measureDataList = rowAnswerList.Where(x=> !unableEvaluateRowIds.Contains(x.Id)).Select(x => x.OrderMark + x.RowIndex.GetLesionMark()).ToList();