IRC_NewDev
he 2023-10-30 16:53:24 +08:00
parent ae2a3ba8a3
commit c271537878
1 changed files with 1 additions and 1 deletions

View File

@ -1663,7 +1663,7 @@ namespace IRaCIS.Core.Application.Service.ReadingCalculate
var baseLineSpleenLength = await GetBaseLineSpleenLength(inDto);
var presentSpleenLength = inDto.QuestionInfo.Where(x => x.QuestionType == QuestionType.SpleenLength).Select(x => x.Answer).FirstOrDefault().IsNullOrEmptyReturn0();
if (baseLineSpleenLength - 130 > 0)
if (baseLineSpleenLength - 130 > 0&& presentSpleenLength>130)
{
return ReserveDecimal((presentSpleenLength - 130 - (baseLineSpleenLength - 130))*100 / (baseLineSpleenLength - 130), inDto.DigitPlaces);
}