IRC_NewDev
he 2024-04-12 15:43:54 +08:00
parent 4cedb9dbcb
commit 2778b3ea7b
1 changed files with 3 additions and 3 deletions

View File

@ -2629,11 +2629,11 @@ namespace IRaCIS.Core.Application.Service.ReadingCalculate
}).ToListAsync(); ;
// 数据库中最大SUVmax
// 数据库中PET5PS
var pET5PS = dataBaseDataList.Where(x => x.QuestionType == QuestionType.PET5PS).Select(x => x.Answer).FirstIsNullReturnEmpty();
// 如果SUVmax没变 就不重新计算
if (pET5PS == (await GetPET5PS(inDto)).ToString())
// 如果PET5PS没变 就不重新计算
if (pET5PS == (await GetPET5PS(inDto)).ToString())
{
return dataBaseDataList.Where(x => x.QuestionType == QuestionType.PSScoreRemarks).Select(x => x.Answer).FirstIsNullReturnEmpty();