From a0f5e7b7e56afb405d597187aa6ba5118c464171 Mon Sep 17 00:00:00 2001 From: he <109787524@qq.com> Date: Thu, 25 Sep 2025 18:01:10 +0800 Subject: [PATCH] =?UTF-8?q?=E8=AE=A1=E7=AE=97=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Service/ReadingCalculate/PCWG3CalculateService.cs | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/IRaCIS.Core.Application/Service/ReadingCalculate/PCWG3CalculateService.cs b/IRaCIS.Core.Application/Service/ReadingCalculate/PCWG3CalculateService.cs index 185fd525a..bd8e53509 100644 --- a/IRaCIS.Core.Application/Service/ReadingCalculate/PCWG3CalculateService.cs +++ b/IRaCIS.Core.Application/Service/ReadingCalculate/PCWG3CalculateService.cs @@ -1295,8 +1295,10 @@ namespace IRaCIS.Core.Application.Service.ReadingCalculate // 之前不存在pd 又分为两种情况 在访视2 和 访视2以后 if (inDto.VisitTaskNum == 2) { - // V1:新病灶计数>=2; V2:新病灶计数 >= 2; V2与V1的间隔 >= 6周 - if (lastNewLesionsCount >= 2 && thisNewLesionsCount >= 2 && daysBetween >= 42) + var alwaysNewLesionsCount = inDto.QuestionInfo.Where(x => x.QuestionType == QuestionType.AlwaysNewLesionsCount).Select(x => x.Answer).FirstIsNullReturnEmpty().IsNullOrEmptyReturn0(); + + // V1:新病灶计数>=2; V2:新病灶计数>=2且既往新病灶计数>=2;; V2与V1的间隔 >= 6周 + if (lastNewLesionsCount >= 2 && thisNewLesionsCount >= 2&& alwaysNewLesionsCount>=2 && daysBetween >= 42) { result.IsPD = true;