ebom-来源问题
This commit is contained in:
parent
1e775815bd
commit
bfdeca90f8
|
|
@ -135,7 +135,7 @@ public abstract class EBomToPbomBase {
|
||||||
|
|
||||||
List<BomNewEbomParentVO> result = child.stream().filter(u -> StrUtil.isBlank(u.getMaterialNo())).collect(Collectors.toList());
|
List<BomNewEbomParentVO> result = child.stream().filter(u -> StrUtil.isBlank(u.getMaterialNo())).collect(Collectors.toList());
|
||||||
|
|
||||||
Map<String, List<BomNewEbomParentVO>> listMp = child.stream().collect(Collectors.groupingBy(BomNewEbomParentVO::getMaterialNo));
|
Map<String, List<BomNewEbomParentVO>> listMp = child.stream().filter(u->StrUtil.isNotBlank(u.getMaterialNo())).collect(Collectors.groupingBy(BomNewEbomParentVO::getMaterialNo));
|
||||||
|
|
||||||
for (String key : listMp.keySet()) {
|
for (String key : listMp.keySet()) {
|
||||||
List<BomNewEbomParentVO> voList = listMp.get(key);
|
List<BomNewEbomParentVO> voList = listMp.get(key);
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue