diff --git a/app/admin/lists/store_product/StoreProductLists.php b/app/admin/lists/store_product/StoreProductLists.php index d1201c4ce..de7a7cdbf 100644 --- a/app/admin/lists/store_product/StoreProductLists.php +++ b/app/admin/lists/store_product/StoreProductLists.php @@ -138,9 +138,9 @@ class StoreProductLists extends BaseAdminDataLists implements ListsSearchInterfa $category = StoreCategory::where('id', 'in', [$item['top_cate_id'], $item['two_cate_id'], $item['cate_id']])->column('name'); $item['cate_name'] = implode('/', $category); if ($is_warehouse == 1) { - $item['stock'] = WarehouseProductStorege::where('product_id', $item['id'])->sum('nums'); + $item['stock'] = WarehouseProductStorege::where('product_id', $item['id'])->where('warehouse_id', 1)->sum('nums'); } else { - $nums = WarehouseProductStorege::where('product_id', $item['id'])->sum('nums'); + $nums = WarehouseProductStorege::where('product_id', $item['id'])->where('warehouse_id', 1)->sum('nums'); $item['stock'] = bcadd($nums, $stock); } if ($userShip == 4) {