Showing
1 changed file
with
1 additions
and
1 deletions
| ... | ... | @@ -253,7 +253,7 @@ public class ShipmentsOrderInfoController extends DefaultBaseController { |
| 253 | 253 | for (ShipmentsOrderInfo orderInfo : shipmentsOrderInfoList) { |
| 254 | 254 | ShipmentsOrderInfo shipmentsOrderInfo = shipmentsOrderInfoService.findById(orderInfo.getId()); |
| 255 | 255 | List<ShipmentsPlanDetail> detailList = shipmentsPlanDetailService.listByShipmentOrderId(shipmentsOrderInfo.getId()); |
| 256 | - if (CollectionUtils.isNotEmpty(detailList)) { | |
| 256 | + if (CollectionUtils.isEmpty(detailList)) { | |
| 257 | 257 | continue; |
| 258 | 258 | } |
| 259 | 259 | List<String> orderIds = new ArrayList<>(); | ... | ... |