修改
continuous-integration/drone/push Build is passing Details

Test_IRC_Net8
he 2025-12-26 11:16:24 +08:00
parent 292263a60c
commit 43241709af
1 changed files with 39 additions and 21 deletions

View File

@ -1970,6 +1970,19 @@ namespace IRaCIS.Core.Application.Service
foreach (var item in inDto.MergeRowIdList) foreach (var item in inDto.MergeRowIdList)
{ {
switch (taskinfo.TrialReadingCriterion.CriterionType)
{
case CriterionType.Lugano2014:
case CriterionType.Lugano2014WithoutPET:
await _readingTableQuestionAnswerRepository.BatchUpdateNoTrackingAsync(x => x.RowId == item &&
(x.ReadingTableQuestionTrial.QuestionMark == QuestionMark.MajorAxis || x.ReadingTableQuestionTrial.QuestionMark == QuestionMark.ShortAxis), x => new ReadingTableQuestionAnswer()
{
Answer = "0",
});
break;
default:
//淋巴结的长短经 为0 非淋巴的 长径0 短径为空 //淋巴结的长短经 为0 非淋巴的 长径0 短径为空
if (await _readingTableQuestionAnswerRepository.AnyAsync(x => x.RowId == item && x.ReadingTableQuestionTrial.QuestionMark == QuestionMark.IsLymph && x.Answer == isLymph)) if (await _readingTableQuestionAnswerRepository.AnyAsync(x => x.RowId == item && x.ReadingTableQuestionTrial.QuestionMark == QuestionMark.IsLymph && x.Answer == isLymph))
{ {
@ -1994,6 +2007,11 @@ namespace IRaCIS.Core.Application.Service
Answer = "0", Answer = "0",
}); });
} }
break;
}
} }