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