Compare commits

...

2 Commits

Author SHA1 Message Date
he 323534e52b Merge branch 'Test_HIR_Net8' of https://gitea.frp.extimaging.com/XCKJ/irc-netcore-api into Test_HIR_Net8
continuous-integration/drone/push Build is passing Details
2025-09-12 17:57:18 +08:00
he b432002266 计算修改 2025-09-12 17:57:17 +08:00
1 changed files with 5 additions and 0 deletions

View File

@ -1083,6 +1083,11 @@ namespace IRaCIS.Core.Application.Service.ReadingCalculate
{
return string.Empty;
}
if (inDto.QuestionInfo.Any(x => x.QuestionType == QuestionType.ImageQualityAssessment && x.Answer == ImageQualityEvaluation.Abnormal.GetEnumInt()))
{
//影像质量不正常
return VisitTumorEvaluation.NE.GetEnumInt();
}
var isPD = await ChangeLastTaskSiteVisitForTumorEvaluation(inDto);
var newLesionsCount = inDto.QuestionInfo.Where(x => x.QuestionType == QuestionType.NewLesionsCount).Select(x => x.Answer).FirstOrDefault().IsNullOrEmptyReturn0();
var baseLineLesionsCount = inDto.QuestionInfo.Where(x => x.QuestionType == QuestionType.BaseLineLesionsCount).Select(x => x.Answer).FirstOrDefault().IsNullOrEmptyReturn0();