IRC_NewDev
he 2023-10-17 15:19:49 +08:00
parent b926519424
commit 2ea9c49b2e
1 changed files with 9 additions and 1 deletions

View File

@ -1723,7 +1723,15 @@ namespace IRaCIS.Core.Application.Service.ReadingCalculate
if (inDto.IsBaseLine)
{
return SpleenAssessment.Stabilization.GetEnumInt();
if (spleenLength <= 130)
{
return SpleenAssessment.Normal.GetEnumInt();
}
else
{
return SpleenAssessment.Swelling.GetEnumInt();
}
}
var result = SpleenAssessment.Stabilization;