Browse Source

自动取消叮当

master
weigang 5 years ago
parent
commit
831374f087
  1. 2
      app/Service/v3/Implementations/OrderListService.php

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

@ -197,7 +197,7 @@ class OrderListService implements OrderListServiceInterface
public function autoCancel($userId)
{
return OrderMain::query()
->where(['user_id' => $userId])
->where(['user_id' => $userId, 'state' => OrderState::UNPAID])
->where('created_at', '<', time()-900)
->update(['state' => OrderState::CANCELED]);
}
Loading…
Cancel
Save