mirror of
https://github.com/v2board/v2board.git
synced 2025-02-24 22:30:29 +08:00
fix order renew
This commit is contained in:
parent
19fd19fbcf
commit
c817710556
@ -85,11 +85,11 @@ class OrderController extends Controller
|
||||
abort(500, '该订阅不存在');
|
||||
}
|
||||
|
||||
if (!($plan->show || $user->plan_id == $plan->id)) {
|
||||
if (!$plan->show) {
|
||||
abort(500, '该订阅已售罄');
|
||||
}
|
||||
|
||||
if (!$plan->show && !$plan->renew) {
|
||||
if (!$plan->renew) {
|
||||
abort(500, '该订阅无法续费,请更换其他订阅');
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user