修改一版

Uat_Study
he 2022-09-21 17:51:06 +08:00
parent 3e9d8429e4
commit d2662fd1e5
1 changed files with 2 additions and 2 deletions

View File

@ -630,12 +630,12 @@ namespace IRaCIS.Core.Application.Service
{
if (inDto.IsBaseLine)
{
return nameof(ExistOrNA.NA);
return ExistOrNA.NA.GetEnumInt();
}
var result = inDto.QuestionInfo.Any(x => x.QuestionType == QuestionType.TargetLesion && x.Answer.EqEnum(TargetAssessment.NE));
return result ? nameof(ExistOrNA.Exist) : nameof(ExistOrNA.NotExist);
return result ? ExistOrNA.Exist.GetEnumInt() : ExistOrNA.NotExist.GetEnumInt();
}
#endregion