From effef5ad650ea7351bf5b3eda2a28495522c5afe Mon Sep 17 00:00:00 2001 From: hang <872297557@qq.com> Date: Wed, 24 Jul 2024 16:25:53 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9IR=20=20=E6=97=A0=E5=BA=8F?= =?UTF-8?q?=E9=98=85=E7=89=87=E7=94=B3=E8=AF=B7bug?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Service/Allocation/VisitTaskService.cs | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/IRaCIS.Core.Application/Service/Allocation/VisitTaskService.cs b/IRaCIS.Core.Application/Service/Allocation/VisitTaskService.cs index c67402eea..251b036d6 100644 --- a/IRaCIS.Core.Application/Service/Allocation/VisitTaskService.cs +++ b/IRaCIS.Core.Application/Service/Allocation/VisitTaskService.cs @@ -1476,9 +1476,11 @@ namespace IRaCIS.Core.Application.Service.Allocation } else { - if (task.ReadingCategory != ReadingCategory.Visit && task.ReadingCategory != ReadingCategory.Global) + //也要支持裁判重阅240701 + + if (task.ReadingCategory != ReadingCategory.Visit && task.ReadingCategory != ReadingCategory.Judge) { - //---无序阅片,仅仅允许IR 申请 全局和访视类型类别的任务进行重阅 + //---无序阅片,仅仅允许IR 申请 访视、裁判类型类别的任务进行重阅 throw new BusinessValidationFailedException(_localizer["VisitTask_IRGlobalRecheck"]); } }