Compare commits

..

No commits in common. "00f5fa993a62ddf0ee3424ac786d802320cf560a" and "3810b33c9e5a3c05f93395f5f92edbe2195cf717" have entirely different histories.

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.IsNullOrEmpty() ?
x.Answer = x.Answer.IsNotNullOrEmpty() ?
historyTableAnswerList.Where(y => y.RowId == historyRow.Id && y.TableQuestionId == x.TableQuestionId).Select(x => x.Answer).FirstOrDefault()??string.Empty :
x.Answer;
});