This commit is contained in:
he
2023-01-15 15:16:56 +08:00
parent 9936a15079
commit a321e25c04
2 changed files with 21 additions and 1 deletions
@@ -202,7 +202,7 @@ namespace IRaCIS.Core.Application.Service.ReadingCalculate
question.Childrens = new List<ReadingReportDto>();
var rowoindexs = lesionsIndexs.Where(x => x.QuestionId == question.QuestionId).Select(x => x.Rowindexs.OrderBy(y => y).ToList()).FirstOrDefault();
rowoindexs = rowoindexs == null ? new List<decimal>() : rowoindexs;
foreach (var rowoindex in rowoindexs)
{
var rowinfo = rowlist.Where(x => x.RowIndex == rowoindex).FirstOrDefault();