mirror of
https://github.com/v2board/v2board.git
synced 2024-11-10 17:49:11 +08:00
order: fix reset price buy
This commit is contained in:
parent
72d2b79a9f
commit
137b018aad
@ -96,6 +96,10 @@ class OrderController extends Controller
|
||||
abort(500, '必须存在订阅才可以购买流量重置包');
|
||||
}
|
||||
|
||||
if ($request->input('cycle') === 'reset_price' && $user->expired_at <= time()) {
|
||||
abort(500, '当前订阅已过期,无法购买重置包');
|
||||
}
|
||||
|
||||
DB::beginTransaction();
|
||||
$order = new Order();
|
||||
$orderService = new OrderService($order);
|
||||
|
Loading…
Reference in New Issue
Block a user