wupengfei 2 years ago
parent
commit
a661e4f94e
1 changed files with 1 additions and 2 deletions
  1. 1 2
      application/api/controller/Coupon.php

+ 1 - 2
application/api/controller/Coupon.php

@@ -145,8 +145,7 @@ class Coupon extends Base
         $exchange_num = 0;
         foreach ($coupon_list  as $v) {
             $has_num = UserCouponList::getUserCouponNum($this->user_id,$v['id']);
-            var_dump($v['code'] ,$code,$v['code'] !== $code);continue;
-            if($has_num >= $v['user_num'] && $v['code'] !== $code) continue;
+            if($has_num >= $v['user_num'] || $v['code'] !== $code) continue;
             $exchange_num++;
             UserCouponList::saveUserCoupon($v,$this->user_id);
         }