pcwg3 NA字典不一样
continuous-integration/drone/push Build is passing Details

Test_IRC_Net8
hang 2026-01-05 16:03:06 +08:00
parent 208cb40525
commit fcd0dd9b08
1 changed files with 5 additions and 4 deletions

View File

@ -255,7 +255,8 @@ public class TrialStatService(
t.Dictionary.Value, t.Dictionary.Value,
}) })
.ToList() .ToList()
.Where(t => t.Code != "-1") .WhereIf(criterion.CriterionType != CriterionType.PCWG3, t => t.Code != "-1")
.WhereIf(criterion.CriterionType == CriterionType.PCWG3, t => t.Code != "5")
.Select(t => new EfficacyEvaluationStatViewModel .Select(t => new EfficacyEvaluationStatViewModel
{ {
DictionaryCode = dicName, DictionaryCode = dicName,