mirror of
http://192.168.1.205:9980/cf_devdept2/cf_imes_server.git
synced 2026-08-12 21:02:08 +08:00
未排订单 订单分页接口翻页数据错误修复
This commit is contained in:
+3
-2
@@ -586,8 +586,9 @@ public class PlanServiceImpl implements PlanService {
|
||||
return new PageResult<>();
|
||||
}
|
||||
|
||||
// 查询顶级列表的信息
|
||||
IPage<OrderRespVOCopy> orderList = planItemMapper.selectOrderList(page, queryWrapperX, type, orderGoodsIds, rootOrderIdList.getRecords());
|
||||
// 查询顶级列表的信息,分页在顶级查询做,此处查询全部信息避免分页互相影响
|
||||
PageDTO<OrderRespVOCopy> secondPage = new PageDTO<>(pageReqVO.getPageNo(), PAGE_SIZE_NONE);
|
||||
IPage<OrderRespVOCopy> orderList = planItemMapper.selectOrderList(secondPage, queryWrapperX, type, orderGoodsIds, rootOrderIdList.getRecords());
|
||||
|
||||
List<OrderRespVOCopy> mainOrderList = orderList.getRecords();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user