From a321e25c0493c7904f57fbbd2f392fdaa60768ea Mon Sep 17 00:00:00 2001
From: he <10978375@qq.com>
Date: Sun, 15 Jan 2023 15:16:56 +0800
Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.../IRaCIS.Core.Application.xml | 20 +++++++++++++++++++
.../SelfDefineCalculateService.cs | 2 +-
2 files changed, 21 insertions(+), 1 deletion(-)
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();