From cf8a76d24fad1743f196b79610718e2b0b8ca825 Mon Sep 17 00:00:00 2001 From: he <10978375@qq.com> Date: Thu, 1 Dec 2022 13:11:05 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E4=B8=80=E7=89=88?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Service/Reading/MedicalAudit/ReadingMedicalReviewService.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/IRaCIS.Core.Application/Service/Reading/MedicalAudit/ReadingMedicalReviewService.cs b/IRaCIS.Core.Application/Service/Reading/MedicalAudit/ReadingMedicalReviewService.cs index e750da711..fa1e5df67 100644 --- a/IRaCIS.Core.Application/Service/Reading/MedicalAudit/ReadingMedicalReviewService.cs +++ b/IRaCIS.Core.Application/Service/Reading/MedicalAudit/ReadingMedicalReviewService.cs @@ -301,7 +301,7 @@ namespace IRaCIS.Core.Application.Service join taskAnswer in _readingTaskQuestionAnswerRepository.AsQueryable() on new { TaskId= global.TaskId, QuestionId=global.QuestionId??default(Guid) } equals new { TaskId=taskAnswer.VisitTaskId, QuestionId=taskAnswer.ReadingQuestionTrialId } select new JudgeQuestionAnswerInfo() { - Answer = global.Answer==string.Empty? taskAnswer.Answer: global.Answer, + Answer = global.Answer.IsNullOrEmpty()? taskAnswer.Answer: global.Answer, VisitTaskId = global.GlobalTaskId, DictionaryCode = global.TrialReadingQuestion.DictionaryCode, ShowOrder = global.TrialReadingQuestion.ShowOrder,