소스 검색

update: fix coupon

tokumeikoi 2 년 전
부모
커밋
9250d7b19c
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      app/Services/CouponService.php

+ 1 - 1
app/Services/CouponService.php

@@ -38,8 +38,8 @@ class CouponService
             $order->discount_amount = $order->total_amount;
         }
         if ($this->coupon->limit_use !== NULL) {
-            $this->coupon->limit_use = $this->coupon->limit_use - 1;
             if ($this->coupon->limit_use <= 0) return false;
+            $this->coupon->limit_use = $this->coupon->limit_use - 1;
             if (!$this->coupon->save()) {
                 return false;
             }