修改一版

Uat_Study
he 2022-11-11 16:46:10 +08:00
parent 5e382449af
commit a8f6b5439a
1 changed files with 1 additions and 1 deletions

View File

@ -149,7 +149,7 @@ namespace IRaCIS.Application.Services
(lr.global.Select(x => x.Answer).FirstOrDefault().IsNullOrEmpty() && inDto.UsingOriginalData ?
lr.question.Answer : lr.global.Select(x => x.Answer).FirstOrDefault()
),
IsHaveChange = lr.global == null ? false : lr.global.Any(),
IsHaveChange = lr.global.Any(x=>x.QuestionId!=null&&!x.Answer.IsNullOrEmpty()) ? true : false,
QuestionId = lr.question.QuestionId,
QuestionName = lr.question.QuestionName,
QuestionType = lr.question.QuestionType,