Commit f930fd8d43b1b6b1a4943372d9d02e926062197a

Authored by yeqianyong
1 parent 31daad04

楚江ERP-发货单状态更新bug修复

@@ -329,6 +329,8 @@ public class ShipmentsPlanDetailServiceImpl extends BaseMpServiceImpl<ShipmentsP @@ -329,6 +329,8 @@ public class ShipmentsPlanDetailServiceImpl extends BaseMpServiceImpl<ShipmentsP
329 } 329 }
330 LambdaQueryWrapper<ShipmentsPlanDetail> queryWrapper = Wrappers.lambdaQuery(ShipmentsPlanDetail.class); 330 LambdaQueryWrapper<ShipmentsPlanDetail> queryWrapper = Wrappers.lambdaQuery(ShipmentsPlanDetail.class);
331 queryWrapper.eq(ShipmentsPlanDetail::getPlanId, planId) 331 queryWrapper.eq(ShipmentsPlanDetail::getPlanId, planId)
  332 + .eq(ShipmentsPlanDetail::getDelFlag, Boolean.FALSE)
  333 + .eq(ShipmentsPlanDetail::getPreShipments, Boolean.FALSE)
332 .and(wrapper -> wrapper.isNull(ShipmentsPlanDetail::getShipmentOrderId) 334 .and(wrapper -> wrapper.isNull(ShipmentsPlanDetail::getShipmentOrderId)
333 .or() 335 .or()
334 .eq(ShipmentsPlanDetail::getShipmentOrderId, "")); 336 .eq(ShipmentsPlanDetail::getShipmentOrderId, ""));