From 9827b22b6f1f0250f3e98a804a3dd41a637d893d Mon Sep 17 00:00:00 2001 From: he <109787524@qq.com> Date: Fri, 10 Jan 2025 10:09:53 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E9=AA=8C=E8=AF=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Service/ReadingCalculate/MRIPDFFCalculateService.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/IRaCIS.Core.Application/Service/ReadingCalculate/MRIPDFFCalculateService.cs b/IRaCIS.Core.Application/Service/ReadingCalculate/MRIPDFFCalculateService.cs index c14ee91e0..ec5c870a7 100644 --- a/IRaCIS.Core.Application/Service/ReadingCalculate/MRIPDFFCalculateService.cs +++ b/IRaCIS.Core.Application/Service/ReadingCalculate/MRIPDFFCalculateService.cs @@ -734,7 +734,7 @@ namespace IRaCIS.Core.Application.Service.ReadingCalculate foreach (var item in notableQuestionList) { - if (markList.Any(x => x.RowId == item.RowId)) + if (markList.Any(x => x.RowId == item.RowId && x.MeasureData.IsNotNullOrEmpty())) { throw new BusinessValidationFailedException(_localizer["MRIPDFF_NeedClearMark"]); }