From fb3228e18abd8c43b2629d6cdf4c06abdff8d7d7 Mon Sep 17 00:00:00 2001
From: hang <872297557@qq.com>
Date: Tue, 22 Oct 2024 15:11:16 +0800
Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E5=AF=BC=E8=A1=A8bug?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.../IRaCIS.Core.Application.xml | 9 +++++++--
.../Service/Common/ExcelExportService.cs | 17 +++++++++++++++--
2 files changed, 22 insertions(+), 4 deletions(-)
diff --git a/IRaCIS.Core.Application/IRaCIS.Core.Application.xml b/IRaCIS.Core.Application/IRaCIS.Core.Application.xml
index daa665bde..8e8b98f09 100644
--- a/IRaCIS.Core.Application/IRaCIS.Core.Application.xml
+++ b/IRaCIS.Core.Application/IRaCIS.Core.Application.xml
@@ -13034,12 +13034,17 @@
- CRC 回复质控质疑 通知QC
+ CRC 回复质控质疑 通知QC Code012,013
+
+
+
+
+ CRC 回复质控质疑 通知QC Code012,013
- QC回复 质控质疑,通知CRC
+ QC回复 质控质疑,通知CRC
diff --git a/IRaCIS.Core.Application/Service/Common/ExcelExportService.cs b/IRaCIS.Core.Application/Service/Common/ExcelExportService.cs
index 741faf0b8..d9f580252 100644
--- a/IRaCIS.Core.Application/Service/Common/ExcelExportService.cs
+++ b/IRaCIS.Core.Application/Service/Common/ExcelExportService.cs
@@ -1591,13 +1591,19 @@ namespace IRaCIS.Core.Application.Service.Common
//评估病灶明细
DetailedOfEvaluatedLesion = 3,
+ //阅片结果
CommonReading_Export = 4,
+
+ //阅片结果明细
CommonReadingDetail_Export = 5,
+ //裁判阅片明细
CommonJudgeReadingDetail_Export = 6,
+ //访视一致率
VisitJudgeRatio_Export = 7,
+ //阅片期一致率
ReadingPeriodJudgeRatio_Export = 8,
}
@@ -2214,7 +2220,11 @@ namespace IRaCIS.Core.Application.Service.Common
var findItem = item.QuestionAnswerList.Where(t => t.QuestionType == questionType).FirstOrDefault();
- findItem.QuestionName = _userInfo.IsEn_Us ? "Overall Response" : "整体肿瘤评估";
+ if (findItem != null)
+ {
+ findItem.QuestionName = _userInfo.IsEn_Us ? "Overall Response" : "整体肿瘤评估";
+ }
+
}
if (item.IsBaseline == true)
@@ -2239,7 +2249,10 @@ namespace IRaCIS.Core.Application.Service.Common
var findItem = item.QuestionAnswerList.Where(t => t.QuestionType == questionType).FirstOrDefault();
- findItem.QuestionName = _userInfo.IsEn_Us ? "Overall Response" : "整体肿瘤评估";
+ if (findItem != null)
+ {
+ findItem.QuestionName = _userInfo.IsEn_Us ? "Overall Response" : "整体肿瘤评估";
+ }
}
if (item.IsBaseline == true)