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

Test_IRC_Net8
Hewt 2026-03-19 14:18:03 +08:00
parent 24b30b1c4b
commit 67216d1c92
1 changed files with 3 additions and 1 deletions

View File

@ -1485,7 +1485,9 @@ namespace IRaCIS.Core.Application.Service
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"]);