From 38004c4dcf20c60f516f1366e62ccb18f9dcd64f Mon Sep 17 00:00:00 2001
From: he <10978375@qq.com>
Date: Fri, 8 Jul 2022 14:17:21 +0800
Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E4=B8=80=E7=89=88?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.../Service/Reading/ReadingMedicalReviewService.cs | 2 +-
IRaCIS.Core.Domain.Share/Allocation/AllocationRelation.cs | 7 ++++++-
2 files changed, 7 insertions(+), 2 deletions(-)
diff --git a/IRaCIS.Core.Application/Service/Reading/ReadingMedicalReviewService.cs b/IRaCIS.Core.Application/Service/Reading/ReadingMedicalReviewService.cs
index 0e201ca5f..a00763fb2 100644
--- a/IRaCIS.Core.Application/Service/Reading/ReadingMedicalReviewService.cs
+++ b/IRaCIS.Core.Application/Service/Reading/ReadingMedicalReviewService.cs
@@ -337,7 +337,7 @@ namespace IRaCIS.Core.Application.Service
{
TaskMedicalReviewId = inDto.TaskMedicalReviewId,
UserTypeShortName = _userInfo.UserTypeShortName,
- Content = "MIM关闭医学审核对话",
+ Content = inDto.MedicalDialogCloseEnum.GetDescription()+ (inDto.DialogCloseReason.IsNullOrEmpty()? inDto.DialogCloseReason:","+ inDto.DialogCloseReason),
UserTypeEnumInt = _userInfo.UserTypeEnumInt,
};
diff --git a/IRaCIS.Core.Domain.Share/Allocation/AllocationRelation.cs b/IRaCIS.Core.Domain.Share/Allocation/AllocationRelation.cs
index 4831fc755..71c304559 100644
--- a/IRaCIS.Core.Domain.Share/Allocation/AllocationRelation.cs
+++ b/IRaCIS.Core.Domain.Share/Allocation/AllocationRelation.cs
@@ -1,5 +1,5 @@
-
+using System.ComponentModel.DataAnnotations;
namespace IRaCIS.Core.Domain.Share
{
public enum ReadingCategory
@@ -87,26 +87,31 @@ namespace IRaCIS.Core.Domain.Share
///
/// 无
///
+ [Display(Name = "")]
None = 0,
///
/// 问题已解决
///
+ [Display(Name = "问题已解决")]
ProblemSolved = 1,
///
/// 问题无法解决
///
+ [Display(Name = "问题无法解决")]
Unresolvable = 2,
///
/// IR申请重阅
///
+ [Display(Name = "IR申请重阅")]
IRApplyReReading = 3,
///
/// 其他原因
///
+ [Display(Name = "IR申请重阅")]
OtherReason = 4
}