更新了写真预约特殊产品处理
This commit is contained in:
parent
c2d356864c
commit
df92ed4fa0
|
@ -73,13 +73,11 @@ public class PendingServiceGoodController {
|
||||||
throw new BusinessException(ErrorCode.PARAMS_ERROR);
|
throw new BusinessException(ErrorCode.PARAMS_ERROR);
|
||||||
}
|
}
|
||||||
QueryWrapper<PendingServiceGood> queryWrapper = pendingServiceGoodService.getQueryWrapper(bookingOrderQueryRequest);
|
QueryWrapper<PendingServiceGood> queryWrapper = pendingServiceGoodService.getQueryWrapper(bookingOrderQueryRequest);
|
||||||
long current = bookingOrderQueryRequest.getCurrent();
|
|
||||||
long pageSize = bookingOrderQueryRequest.getPageSize();
|
|
||||||
Page<PendingServiceGood> page = pendingServiceGoodService.page(new Page<>(current, pageSize), queryWrapper);
|
|
||||||
|
|
||||||
List<PendingServiceGood> pendingServiceGoodList = page.getRecords();
|
List<PendingServiceGood> pendingServiceGoodList = pendingServiceGoodService.list(queryWrapper);
|
||||||
// 获取服务类待处理订单
|
// 获取服务类待处理订单
|
||||||
List<PendingServiceOrder> pendingServiceOrderList = commonService.findByFieldInTargetField(pendingServiceGoodList, pendingServiceOrderService, PendingServiceGood::getId, "pendingId");
|
List<PendingServiceOrder> pendingServiceOrderList = commonService.findByFieldInTargetField(pendingServiceGoodList, pendingServiceOrderService, PendingServiceGood::getId, "pendingId");
|
||||||
|
|
||||||
// 封装成服务类待处理订单VO
|
// 封装成服务类待处理订单VO
|
||||||
List<PendingServiceOrderVO> pendingServiceOrderVOS = commonService.convertList(pendingServiceOrderList, PendingServiceOrderVO.class);
|
List<PendingServiceOrderVO> pendingServiceOrderVOS = commonService.convertList(pendingServiceOrderList, PendingServiceOrderVO.class);
|
||||||
// 封装map集合(键:服务类商品待处理id,值:待处理服务类订单列表)
|
// 封装map集合(键:服务类商品待处理id,值:待处理服务类订单列表)
|
||||||
|
@ -105,12 +103,18 @@ public class PendingServiceGoodController {
|
||||||
pendingServiceGoodVOList.add(pendingServiceGoodVO);
|
pendingServiceGoodVOList.add(pendingServiceGoodVO);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
long current = bookingOrderQueryRequest.getCurrent();
|
||||||
|
long pageSize = bookingOrderQueryRequest.getPageSize();
|
||||||
|
long total = pendingServiceOrderList.size();
|
||||||
|
long pages = (total + pageSize - 1) / pageSize;
|
||||||
|
|
||||||
Page<PendingServiceGoodVO> voPage = new Page<>();
|
Page<PendingServiceGoodVO> voPage = new Page<>();
|
||||||
voPage.setRecords(pendingServiceGoodVOList);
|
voPage.setRecords(pendingServiceGoodVOList);
|
||||||
voPage.setTotal(page.getTotal());
|
voPage.setTotal(total);
|
||||||
voPage.setSize(page.getSize());
|
voPage.setSize(pageSize);
|
||||||
voPage.setCurrent(page.getCurrent());
|
voPage.setCurrent(current);
|
||||||
voPage.setPages(page.getPages());
|
voPage.setPages(pages);
|
||||||
return ResultUtils.success(voPage);
|
return ResultUtils.success(voPage);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user