bug修复
This commit is contained in:
parent
bb6e4daec0
commit
f61c426a13
|
|
@ -68,7 +68,7 @@ public class EBomToPBomFor31 extends EBomToPbomBase {
|
|||
data1010.add(parent);
|
||||
for (BomNewEbomParentVO data : deliveryPackage1010) {
|
||||
List<BomNewEbomParentVO> subVos = new ArrayList<>();
|
||||
if (data.getMaterialName().contains("仙桃")) { //只获取下降虚拟包
|
||||
if (data.getMaterialName().contains("仙桃") && !VirtualPackageTypeEnum.PAINT_PACKAGE.equalsValue(data.getVirtualPartType())) { //只获取下降虚拟包(排除仙桃油漆包)
|
||||
subVos.add(data);
|
||||
subVos.addAll(result.stream().filter(u -> u.getParentRowId().equals(data.getBomRowId())).collect(Collectors.toList()));
|
||||
} else {
|
||||
|
|
|
|||
|
|
@ -533,6 +533,7 @@
|
|||
AND (root_is = 1 OR user_root_is = 1)
|
||||
AND sap_state > 3
|
||||
AND created_by = #{userCode}
|
||||
<include refid="whr"/>
|
||||
ORDER BY release_time DESC
|
||||
</select>
|
||||
<select id="getSapErrorNum" resultType="java.lang.Integer">
|
||||
|
|
|
|||
Loading…
Reference in New Issue