Compare commits

...

2 Commits

Author SHA1 Message Date
he 00f5fa993a Merge branch 'Test_IRC_Net8' of https://gitea.frp.extimaging.com/XCKJ/irc-netcore-api into Test_IRC_Net8
continuous-integration/drone/push Build is passing Details
2025-12-24 09:31:21 +08:00
he 6b98e23e50 复制病灶修改 2025-12-24 09:31:18 +08:00
1 changed files with 1 additions and 1 deletions

View File

@ -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;
});