소스 검색

update: inventory manage

tokumeikoi 2 년 전
부모
커밋
7713489945
3개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      app/Services/PlanService.php
  2. 0 0
      public/theme/v2board/assets/umi.css
  3. 0 0
      public/theme/v2board/assets/umi.js

+ 2 - 2
app/Services/PlanService.php

@@ -15,13 +15,13 @@ class PlanService
 
     public function incrementInventory(): bool
     {
-        if ($this->plan->inventory_limit !== NULL) return true;
+        if ($this->plan->inventory_limit === NULL) return true;
         return $this->plan->increment('inventory_limit');
     }
 
     public function decrementInventory(): bool
     {
-        if ($this->plan->inventory_limit !== NULL) return true;
+        if ($this->plan->inventory_limit === NULL) return true;
         return $this->plan->decrement('inventory_limit');
     }
 }

파일 크기가 너무 크기때문에 변경 상태를 표시하지 않습니다.
+ 0 - 0
public/theme/v2board/assets/umi.css


파일 크기가 너무 크기때문에 변경 상태를 표시하지 않습니다.
+ 0 - 0
public/theme/v2board/assets/umi.js


이 변경점에서 너무 많은 파일들이 변경되어 몇몇 파일들은 표시되지 않았습니다.