Browse Source

取消订单

master
weigang 5 years ago
parent
commit
0a5d935a57
  1. 6
      app/Service/v3/Implementations/OrderListService.php

6
app/Service/v3/Implementations/OrderListService.php

@ -61,8 +61,10 @@ class OrderListService implements OrderListServiceInterface
// 清除badge
$this->badgeService->clearUserOrder($userId, $tab);
// 自动取消超时订单
$this->autoCancel($userId);
co(function () use ($userId) {
// 自动取消超时订单
$this->autoCancel($userId);
});
$paginate = $builder->orderBy('created_at', 'desc')->paginate($pagesize);
$orders = $paginate->toArray();

Loading…
Cancel
Save