|
@@ -120,6 +120,8 @@ public class FrontOrderServiceImpl implements FrontOrderService {
|
|
private UserBypassAccountService userBypassAccountService;
|
|
private UserBypassAccountService userBypassAccountService;
|
|
@Autowired
|
|
@Autowired
|
|
private AsyncService asyncService;
|
|
private AsyncService asyncService;
|
|
|
|
+ @Autowired
|
|
|
|
+ private FrontOrderService frontOrderService;
|
|
|
|
|
|
/**
|
|
/**
|
|
* 订单预下单
|
|
* 订单预下单
|
|
@@ -1726,6 +1728,9 @@ public class FrontOrderServiceImpl implements FrontOrderService {
|
|
public OrderCenterNumResponse userCenterNum() {
|
|
public OrderCenterNumResponse userCenterNum() {
|
|
Integer userId = userService.getUserIdException();
|
|
Integer userId = userService.getUserIdException();
|
|
OrderCenterNumResponse response = new OrderCenterNumResponse();
|
|
OrderCenterNumResponse response = new OrderCenterNumResponse();
|
|
|
|
+
|
|
|
|
+// frontOrderService.list2(0, status, new PageParamRequest(), ids, Integer.valueOf(id), department, name)
|
|
|
|
+
|
|
response.setAwaitPayCount(orderService.getCountByStatusAndUid(OrderConstants.ORDER_STATUS_WAIT_PAY, userId));
|
|
response.setAwaitPayCount(orderService.getCountByStatusAndUid(OrderConstants.ORDER_STATUS_WAIT_PAY, userId));
|
|
response.setAwaitShippedCount(orderService.getCountByStatusAndUid(OrderConstants.ORDER_STATUS_WAIT_SHIPPING, userId));
|
|
response.setAwaitShippedCount(orderService.getCountByStatusAndUid(OrderConstants.ORDER_STATUS_WAIT_SHIPPING, userId));
|
|
response.setReceiptCount(orderService.getCountByStatusAndUid(OrderConstants.ORDER_STATUS_WAIT_RECEIPT, userId));
|
|
response.setReceiptCount(orderService.getCountByStatusAndUid(OrderConstants.ORDER_STATUS_WAIT_RECEIPT, userId));
|