From 4b2a0642f620ba01ddb5e28d86ccb1e43e0706e6 Mon Sep 17 00:00:00 2001 From: mkm <727897186@qq.com> Date: Sat, 10 Aug 2024 19:49:53 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E4=BF=AE=E6=94=B9=E5=95=86=E5=93=81?= =?UTF-8?q?=E5=BA=93=E5=AD=98=E9=80=BB=E8=BE=91=EF=BC=8C=E4=BC=98=E5=8C=96?= =?UTF-8?q?=E5=BA=93=E5=AD=98=E6=A3=80=E6=9F=A5=E4=B8=8E=E9=94=99=E8=AF=AF?= =?UTF-8?q?=E5=A4=84=E7=90=86=EF=BC=8C=E5=A2=9E=E5=BC=BA=E4=BB=A3=E7=A0=81?= =?UTF-8?q?=E5=AE=89=E5=85=A8=E6=80=A7?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/admin/controller/store_product/StoreProductController.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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]); }