From 0fc761e91515d5ea51d044ea0cbe58aa4b6492aa Mon Sep 17 00:00:00 2001 From: lewis <604446095@qq.com> Date: Sat, 22 Mar 2025 11:45:20 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B7=BB=E5=8A=A0=E5=A4=8D=E5=88=B6=E5=88=B0?= =?UTF-8?q?=E4=BB=93=E5=BA=93?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../store_product/StoreProductController.php | 12 ++++++++ .../logic/store_product/StoreProductLogic.php | 28 +++++++++++++++++++ 2 files changed, 40 insertions(+) diff --git a/app/admin/controller/store_product/StoreProductController.php b/app/admin/controller/store_product/StoreProductController.php index f494ea82..4e6121f9 100644 --- a/app/admin/controller/store_product/StoreProductController.php +++ b/app/admin/controller/store_product/StoreProductController.php @@ -124,6 +124,18 @@ class StoreProductController extends BaseAdminController return $this->success('复制成功', [], 1, 1); } + /** + * @notes 复制商品到仓库 + * @author likeadmin + * @date 2024/05/31 10:53 + */ + public function copyWarehouse() + { + $params = $this->request->post(); + StoreProductLogic::copyWarehouse($params); + return $this->success('复制成功', [], 1, 1); + } + /** * 商品导入到门店 */ diff --git a/app/admin/logic/store_product/StoreProductLogic.php b/app/admin/logic/store_product/StoreProductLogic.php index 7a78e02d..744e0c9b 100644 --- a/app/admin/logic/store_product/StoreProductLogic.php +++ b/app/admin/logic/store_product/StoreProductLogic.php @@ -462,4 +462,32 @@ class StoreProductLogic extends BaseLogic // } // } } + + /** + * 复制商品到仓库 + * @param $params + * @return void + * @throws \think\db\exception\DataNotFoundException + * @throws \think\db\exception\DbException + * @throws \think\db\exception\ModelNotFoundException + */ + public static function copyWarehouse($params) + { + $exist = WarehouseProductStorege::where(['product_id' => $params['product_id'], 'warehouse_id' => $params['warehouse_id']])->find(); + if ($exist) { + throw new BusinessException('该商品已存在该仓库'); + } + $storeProduct = StoreProduct::where('id', $params['product_id'])->findOrEmpty(); + if (!$storeProduct) { + throw new BusinessException('商品不存在'); + } + $data = [ + 'warehouse_id' => $params['warehouse_id'], + 'product_id' => $params['product_id'], + 'nums' => 0, + 'total_price' => 0 + ]; + WarehouseProductStorege::create($data); + } + }