From bec8720a4dc730193d64c7a12cc9cfe136625db6 Mon Sep 17 00:00:00 2001 From: he <10978375@qq.com> Date: Mon, 20 Nov 2023 12:53:01 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BB=A3=E7=A0=81=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Service/ReadingCalculate/LuganoCalculateService.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/IRaCIS.Core.Application/Service/ReadingCalculate/LuganoCalculateService.cs b/IRaCIS.Core.Application/Service/ReadingCalculate/LuganoCalculateService.cs index b8a656cf5..e2c20f20f 100644 --- a/IRaCIS.Core.Application/Service/ReadingCalculate/LuganoCalculateService.cs +++ b/IRaCIS.Core.Application/Service/ReadingCalculate/LuganoCalculateService.cs @@ -2235,7 +2235,7 @@ namespace IRaCIS.Core.Application.Service.ReadingCalculate /// public async Task GetSuvMax(ReadingCalculateDto inDto) { - var rowInfo = inDto.QuestionInfo.Where(x => x.LesionType == LesionType.TargetLesion).SelectMany(x => x.TableRowInfoList).ToList(); + var rowInfo = inDto.QuestionInfo.SelectMany(x => x.TableRowInfoList).ToList(); var tableQuestions = rowInfo.SelectMany(x => x.TableQuestionList).ToList(); var maxSuv = tableQuestions.Where(x => x.QuestionMark == QuestionMark.SUVmax).Select(x => x.Answer.IsNullOrEmptyReturn0()).MaxOrDefault();