diff --git a/IRaCIS.Core.Application/IRaCIS.Core.Application.xml b/IRaCIS.Core.Application/IRaCIS.Core.Application.xml index 9a9d333f7..1317e3467 100644 --- a/IRaCIS.Core.Application/IRaCIS.Core.Application.xml +++ b/IRaCIS.Core.Application/IRaCIS.Core.Application.xml @@ -2413,6 +2413,11 @@ 是否公共分页 + + + 病灶Index + + 是否获取预览 @@ -3893,6 +3898,11 @@ 字典code + + + 复制病灶的时候 是否复制这个问题 + + 表格问题类型 @@ -4129,6 +4139,11 @@ 系统标准Id + + + 是否复制病灶 + + 类型 @@ -4774,6 +4789,11 @@ Id + + + 是否复制病灶 + + 全局阅片显示类型 diff --git a/IRaCIS.Core.Application/Service/ReadingCalculate/SelfDefineCalculateService.cs b/IRaCIS.Core.Application/Service/ReadingCalculate/SelfDefineCalculateService.cs index 1d008bc83..60af821bd 100644 --- a/IRaCIS.Core.Application/Service/ReadingCalculate/SelfDefineCalculateService.cs +++ b/IRaCIS.Core.Application/Service/ReadingCalculate/SelfDefineCalculateService.cs @@ -202,7 +202,7 @@ namespace IRaCIS.Core.Application.Service.ReadingCalculate question.Childrens = new List(); var rowoindexs = lesionsIndexs.Where(x => x.QuestionId == question.QuestionId).Select(x => x.Rowindexs.OrderBy(y => y).ToList()).FirstOrDefault(); - + rowoindexs = rowoindexs == null ? new List() : rowoindexs; foreach (var rowoindex in rowoindexs) { var rowinfo = rowlist.Where(x => x.RowIndex == rowoindex).FirstOrDefault();