修改
continuous-integration/drone/push Build encountered an error Details

IRC_NewDev
he 2023-12-19 17:24:56 +08:00
parent afebbc294b
commit 1fc5bc8f3b
1 changed files with 2 additions and 2 deletions

View File

@ -2069,11 +2069,11 @@ namespace IRaCIS.Core.Application.Service.ReadingCalculate
return FDGPETOverallAssessment.NA.GetEnumInt();
}
var existPET = inDto.QuestionInfo.Any(x => x.QuestionType == QuestionType.ExistPET && x.Answer == ReadingYesOrNo.Yes.GetEnumInt());
var notExistPET = inDto.QuestionInfo.Any(x => x.QuestionType == QuestionType.ExistPET && x.Answer == ReadingYesOrNo.No.GetEnumInt());
if (existPET.EqEnum(ReadingYesOrNo.No))
if (notExistPET)
{
return FDGPETOverallAssessment.NE.GetEnumInt();
}