diff --git a/app/admin/controller/store_product/StoreProductController.php b/app/admin/controller/store_product/StoreProductController.php index 2849be26..d7fb722f 100644 --- a/app/admin/controller/store_product/StoreProductController.php +++ b/app/admin/controller/store_product/StoreProductController.php @@ -113,7 +113,7 @@ class StoreProductController extends BaseAdminController if ($count == 1) { $store_id = $store_arr[0]; foreach ($product_arr as $key => $arr) { - $find = StoreProduct::where('id', $product_arr['id'])->findOrEmpty()->toArray(); + $find = StoreProduct::where('id', $arr['id'])->findOrEmpty()->toArray(); StoreProductLogic::ordinary($arr, $store_id, $this->adminId, $find, $warehouse_id); // Redis::send('store-storage', ['product_arr' => $arr, 'store_id' => $store_id, 'stock_type' => $stock_type, 'admin_id' => $this->adminId, 'warehouse_id' => $warehouse_id]); @@ -121,7 +121,7 @@ class StoreProductController extends BaseAdminController } else { foreach ($product_arr as $key => $arr) { foreach ($store_arr as $k => $store_id) { - $find = StoreProduct::where('id', $product_arr['id'])->findOrEmpty()->toArray(); + $find = StoreProduct::where('id', $arr['id'])->findOrEmpty()->toArray(); StoreProductLogic::ordinary($arr, $store_id, $this->adminId, $find, $warehouse_id); // Redis::send('store-storage', ['product_arr' => $arr, 'store_id' => $store_id, 'stock_type' => $stock_type, 'admin_id' => $this->adminId, 'warehouse_id' => $warehouse_id]); }