1、解决提层项问题
This commit is contained in:
parent
102ee0bda6
commit
80bf577fb6
|
|
@ -731,7 +731,7 @@ public abstract class EBomToPbomBase {
|
||||||
getAllSubData(ImmutableList.of(parentVO.getBomRowId()), reusltSub);
|
getAllSubData(ImmutableList.of(parentVO.getBomRowId()), reusltSub);
|
||||||
|
|
||||||
|
|
||||||
return reusltSub;
|
return reusltSub.stream().distinct().collect(Collectors.toList());
|
||||||
}
|
}
|
||||||
|
|
||||||
protected List<BomNewEbomParentVO> getAllSubInListIncludeSelf(BomNewEbomParentVO parentVO, List<BomNewEbomParentVO> list) {
|
protected List<BomNewEbomParentVO> getAllSubInListIncludeSelf(BomNewEbomParentVO parentVO, List<BomNewEbomParentVO> list) {
|
||||||
|
|
@ -740,7 +740,7 @@ public abstract class EBomToPbomBase {
|
||||||
getAllSubData(ImmutableList.of(parentVO.getBomRowId()), reusltSub, list);
|
getAllSubData(ImmutableList.of(parentVO.getBomRowId()), reusltSub, list);
|
||||||
|
|
||||||
|
|
||||||
return reusltSub;
|
return reusltSub.stream().distinct().collect(Collectors.toList());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue