Compare commits
2 Commits
3810b33c9e
...
00f5fa993a
| Author | SHA1 | Date |
|---|---|---|
|
|
00f5fa993a | |
|
|
6b98e23e50 |
|
|
@ -276,7 +276,7 @@ namespace IRaCIS.Core.Application.Service.ReadingCalculate
|
||||||
|
|
||||||
tableAnswerList.Where(x => x.RowId == item.Id).ForEach(x =>
|
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 :
|
historyTableAnswerList.Where(y => y.RowId == historyRow.Id && y.TableQuestionId == x.TableQuestionId).Select(x => x.Answer).FirstOrDefault()??string.Empty :
|
||||||
x.Answer;
|
x.Answer;
|
||||||
});
|
});
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue