From 6b98e23e50cde39a1683772d812fc54f0ef6cfce Mon Sep 17 00:00:00 2001 From: he <109787524@qq.com> Date: Wed, 24 Dec 2025 09:31:18 +0800 Subject: [PATCH] =?UTF-8?q?=E5=A4=8D=E5=88=B6=E7=97=85=E7=81=B6=E4=BF=AE?= =?UTF-8?q?=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Service/ReadingCalculate/General/GeneralCalculateService.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/IRaCIS.Core.Application/Service/ReadingCalculate/General/GeneralCalculateService.cs b/IRaCIS.Core.Application/Service/ReadingCalculate/General/GeneralCalculateService.cs index 9b9b4bfda..cf871e269 100644 --- a/IRaCIS.Core.Application/Service/ReadingCalculate/General/GeneralCalculateService.cs +++ b/IRaCIS.Core.Application/Service/ReadingCalculate/General/GeneralCalculateService.cs @@ -276,7 +276,7 @@ namespace IRaCIS.Core.Application.Service.ReadingCalculate tableAnswerList.Where(x => x.RowId == item.Id).ForEach(x => { - x.Answer = x.Answer.IsNotNullOrEmpty() ? + x.Answer = x.Answer.IsNullOrEmpty() ? historyTableAnswerList.Where(y => y.RowId == historyRow.Id && y.TableQuestionId == x.TableQuestionId).Select(x => x.Answer).FirstOrDefault()??string.Empty : x.Answer; });