IRC_NewDev
parent
b5b739a5cb
commit
87aaefadf6
|
@ -2669,7 +2669,15 @@ namespace IRaCIS.Core.Application.Service.ReadingCalculate
|
||||||
|
|
||||||
if (await ImageQualityIsUnableFuse(inDto))
|
if (await ImageQualityIsUnableFuse(inDto))
|
||||||
{
|
{
|
||||||
return SUVChangeVSBaseline.NotEvaluable.GetEnumInt();
|
if (inDto.IsBaseLine)
|
||||||
|
{
|
||||||
|
return string.Empty;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
return SUVChangeVSBaseline.NotEvaluable.GetEnumInt();
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
//PET5ps评分改变时,才计算
|
//PET5ps评分改变时,才计算
|
||||||
|
@ -2912,7 +2920,20 @@ namespace IRaCIS.Core.Application.Service.ReadingCalculate
|
||||||
/// <returns></returns>
|
/// <returns></returns>
|
||||||
public async Task<string> GetEvidenceFocalFDG(ReadingCalculateDto inDto)
|
public async Task<string> GetEvidenceFocalFDG(ReadingCalculateDto inDto)
|
||||||
{
|
{
|
||||||
if (inDto.QuestionInfo.Any(x => x.QuestionType == QuestionType.ExistPET && x.Answer == ReadingYesOrNo.No.GetEnumInt()) || (await ImageQualityIsUnableFuse(inDto)))
|
|
||||||
|
if (await ImageQualityIsUnableFuse(inDto))
|
||||||
|
{
|
||||||
|
if (inDto.IsBaseLine)
|
||||||
|
{
|
||||||
|
return string.Empty;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
return FDGAffinityFociInBM.NE.GetEnumInt();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (inDto.QuestionInfo.Any(x => x.QuestionType == QuestionType.ExistPET && x.Answer == ReadingYesOrNo.No.GetEnumInt()))
|
||||||
{
|
{
|
||||||
return FDGAffinityFociInBM.NE.GetEnumInt();
|
return FDGAffinityFociInBM.NE.GetEnumInt();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue