Parcourir la source

fix order renew

Tokumeikoi il y a 5 ans
Parent
commit
c817710556
1 fichiers modifiés avec 2 ajouts et 2 suppressions
  1. 2 2
      app/Http/Controllers/User/OrderController.php

+ 2 - 2
app/Http/Controllers/User/OrderController.php

@@ -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, '该订阅无法续费,请更换其他订阅');
         }