songxingwei пре 2 година
родитељ
комит
3d6103cce6
1 измењених фајлова са 2 додато и 1 уклоњено
  1. 2 1
      application/store/controller/Goods.php

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

@@ -57,7 +57,8 @@ class Goods extends Controller
             }
 
             $v['zz']=Db::table('hash')->where('goods_id',$v['id'])->count();
-            $v['now_inventory'] = getCollectionInventory($v['id']);
+            $now_inventory = getCollectionInventory($v['id']);
+            $v['now_inventory'] = $now_inventory<=0 ? 0 : $now_inventory;
             $v['shengyu'] = Db::name('hash')->where('goods_id',$v['id'])->where('status',0)->count();
         }
     }