修改一版
parent
3e9d8429e4
commit
d2662fd1e5
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in New Issue