Commit 410a9b94af66219263bc66f1b926930d2def2063
1 parent
a20fbc3b
修改代码
Showing
1 changed file
with
2 additions
and
2 deletions
src/main/java/com/order/erp/service/order/impl/OrderBaseInfoServiceImpl.java
... | ... | @@ -1329,9 +1329,9 @@ public class OrderBaseInfoServiceImpl extends ServiceImpl<OrderBaseInfoMapper, O |
1329 | 1329 | } |
1330 | 1330 | |
1331 | 1331 | //wmr:修改代码,导出指定的订单,2023.12.28 |
1332 | - if (!CollectionUtils.isEmpty(queryVO.getOrderIds())) { | |
1332 | + if (!CollectionUtils.isEmpty(queryVO.getFieldVO().getOrderIds())) { | |
1333 | 1333 | if (CollectionUtils.isNotEmpty(orderIds)) { |
1334 | - Set<Long> collect = queryVO.getOrderIds().stream() | |
1334 | + Set<Long> collect = queryVO.getFieldVO().getOrderIds().stream() | |
1335 | 1335 | .filter(orderIds::contains) |
1336 | 1336 | .collect(Collectors.toSet()); |
1337 | 1337 | queryVO.setOrderIds(collect); | ... | ... |