songxingwei 2 years ago
parent
commit
7e50821f83
1 changed files with 1 additions and 3 deletions
  1. 1 3
      application/store/controller/Goods.php

+ 1 - 3
application/store/controller/Goods.php

@@ -127,16 +127,14 @@ class Goods extends Controller
             $data['date'] = date('Y-m-d',strtotime($data['sell_time']));
             if (isset($data['id'])){
                 $buy_count = Db::name('store_order_info')
-                    ->whereIn('status','1,2')
+                    ->whereIn('status','1,3')
                     ->where('c_id',$data['id'])
                     ->count();
-                echo Db::name('store_order_info')->getLastSql();die;
             }else{
                 $buy_count = 0;
             }
 
             $data['now_inventory'] = $data['inventory']-$buy_count;
-            dump($data);die;
         }else{
             if (!empty($data)){
                 $data['covers'] = $data['cover'];