🆕 过滤人工盘点的数据
All checks were successful
Release / Release (push) Successful in 39s

This commit is contained in:
my_ong 2025-03-29 22:48:57 +08:00
parent 3744403e1e
commit d995f4962a

View File

@ -288,7 +288,7 @@ public class ApplyFormController {
return new ArrayList<>();
}
List<Material> result = materialService.listByIds(materialIds);
result.forEach(item -> item.setTypeName(typeService.getTypeName(item.getType())));
result.stream().filter(i -> !i.getAssignRule()).forEach(item -> item.setTypeName(typeService.getTypeName(item.getType())));
return result;
}