IRC_NewDev
he 2024-04-24 11:13:24 +08:00
parent 87fbd2cb59
commit a2b1a0d64b
1 changed files with 9 additions and 3 deletions

View File

@ -83,6 +83,7 @@ namespace IRaCIS.Core.Application.Service.ReadingCalculate
public async Task<object> GetReadingCalculationData(GetReadingCalculationDataInDto inDto)
{
ReadingCalculateDto readingData = await _generalCalculateService.GetReadingCalculateDto(inDto.VisitTaskId);
readingData.ComputationTrigger = ComputationTrigger.LiverBloodPool;
var baseLinePET5PS = 0m;
if (!readingData.IsBaseLine)
{
@ -93,6 +94,8 @@ namespace IRaCIS.Core.Application.Service.ReadingCalculate
return new
{
BaseLinePET5PS = baseLinePET5PS,
//计算的5ps评分
CalculatePET5PS=await GetPET5PS(readingData),
};
}
@ -2404,6 +2407,9 @@ namespace IRaCIS.Core.Application.Service.ReadingCalculate
LowSpleenLength = lowSpleenLength,
// 基线状态
BaseLineState = baseLineState,
// 脾脏状态
SplenicStatus = await GetSplenicStatus(inDto),
};
}