代码修改
parent
96fc5ae78c
commit
972fc32eeb
|
@ -2692,7 +2692,7 @@ namespace IRaCIS.Core.Application.Service.ReadingCalculate
|
|||
}
|
||||
|
||||
|
||||
if (inDto.IsBaseLine)
|
||||
if (inDto.IsBaseLine || (await ImageQualityIsUnableFuse(inDto)))
|
||||
{
|
||||
return SUVChangeVSBaseline.NA.GetEnumInt();
|
||||
}
|
||||
|
@ -2797,7 +2797,7 @@ namespace IRaCIS.Core.Application.Service.ReadingCalculate
|
|||
|
||||
|
||||
|
||||
if (notExistPET)
|
||||
if (notExistPET || (await ImageQualityIsUnableFuse(inDto)))
|
||||
{
|
||||
return FDGPETOverallAssessment.NE.GetEnumInt();
|
||||
}
|
||||
|
@ -2906,7 +2906,7 @@ namespace IRaCIS.Core.Application.Service.ReadingCalculate
|
|||
/// <returns></returns>
|
||||
public async Task<string> GetEvidenceFocalFDG(ReadingCalculateDto inDto)
|
||||
{
|
||||
if (inDto.QuestionInfo.Any(x => x.QuestionType == QuestionType.ExistPET && x.Answer == ReadingYesOrNo.No.GetEnumInt()))
|
||||
if (inDto.QuestionInfo.Any(x => x.QuestionType == QuestionType.ExistPET && x.Answer == ReadingYesOrNo.No.GetEnumInt()) || (await ImageQualityIsUnableFuse(inDto)))
|
||||
{
|
||||
return FDGAffinityFociInBM.NE.GetEnumInt();
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue