Showing
1 changed file
with
1 additions
and
1 deletions
| ... | ... | @@ -229,7 +229,7 @@ public class DelayedShipmentServiceImpl extends BaseMpServiceImpl<DelayedShipmen |
| 229 | 229 | QueryRequestCarTicketVo vo2 = new QueryRequestCarTicketVo(); |
| 230 | 230 | vo2.setShipmentsOrderId(vo.getShipmentsOrderId()); |
| 231 | 231 | List<RequestCarTicket> query1 = requestCarTicketService.query(vo2); |
| 232 | - if (CollectionUtil.isEmpty(query1)) { | |
| 232 | + if (CollectionUtil.isNotEmpty(query1)) { | |
| 233 | 233 | String requestCarTicketId = query1.get(0).getId(); |
| 234 | 234 | //计划吨位 |
| 235 | 235 | BigDecimal quantity = query1.get(0).getQuantity(); | ... | ... |