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

Test_IRC_Net8
Hewt 2026-03-19 14:08:12 +08:00
parent 62d065fccb
commit 24b30b1c4b
1 changed files with 5 additions and 1 deletions

View File

@ -610,7 +610,11 @@ namespace IRaCIS.Core.Application
toolList = toolList.Distinct().ToList();
if (tabletoolList.Except(trialCriterion.ReadingToolList).Count() > 0)
var alltool= trialCriterion.ReadingToolList.Union(trialCriterion.SegmentToolList).ToList();
if (tabletoolList.Except(alltool).Count() > 0)
{
//---问题的阅片工具不在标准配置的阅片工具列表中
throw new BusinessValidationFailedException(_localizer["TrialConfig_TableToolNotInStdTool"]);