This commit is contained in:
root 2020-01-01 23:42:25 +08:00
parent 89d67279c6
commit 2a693e4911
2 changed files with 2 additions and 2 deletions

View File

@ -15,7 +15,7 @@ class CouponController extends Controller
if (!$coupon) {
abort(500, '优惠券无效');
}
if ($coupon->limit_use <= 0) {
if ($coupon->limit_use <= 0 && $coupon->limit_use !== NULL) {
abort(500, '优惠券已无可用次数');
}
if (time() < $coupon->started_at) {

View File

@ -79,7 +79,7 @@ class OrderController extends Controller
if (!$coupon) {
abort(500, '优惠券无效');
}
if ($coupon->limit_use <= 0) {
if ($coupon->limit_use <= 0 && $coupon->limit_use !== NULL) {
abort(500, '优惠券已无可用次数');
}
if (time() < $coupon->started_at) {