From 0479ce90d43e60f8d920a9dff5abfe7d4fd118ce Mon Sep 17 00:00:00 2001 From: Anyon Date: Wed, 9 May 2018 11:31:09 +0800 Subject: [PATCH] =?UTF-8?q?[=E6=9B=B4=E6=96=B0]=E4=BF=AE=E6=AD=A3=E5=BE=AE?= =?UTF-8?q?=E4=BF=A1=E5=95=86=E5=9F=8E=E5=BA=93=E5=AD=98=E5=8F=8A=E9=94=80?= =?UTF-8?q?=E5=94=AE=E9=87=8F=E8=87=AA=E5=8A=A8=E5=90=8C=E6=AD=A5=E6=9C=BA?= =?UTF-8?q?=E5=88=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- application/store/service/GoodsService.php | 2 +- application/store/service/OrderService.php | 5 ++++- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/application/store/service/GoodsService.php b/application/store/service/GoodsService.php index 7ef6c6a7f..8873f2f7f 100644 --- a/application/store/service/GoodsService.php +++ b/application/store/service/GoodsService.php @@ -86,7 +86,7 @@ class GoodsService } /** - * 同步更新商品库存及售出(@todo 需要重新做库存统计) + * 同步更新商品库存及售出 * @param int $goods_id 商品ID * @return array * @throws \think\Exception diff --git a/application/store/service/OrderService.php b/application/store/service/OrderService.php index e6d3d4ddd..cb6f84507 100644 --- a/application/store/service/OrderService.php +++ b/application/store/service/OrderService.php @@ -68,7 +68,10 @@ class OrderService Db::name('StoreOrderGoods')->insertAll($orderList); // 订单关联的商品信息 Db::name('storeOrderExpress')->insert($expressResult['data']); // 快递信息 }); - // @todo 同步相关商品库存 + // 同步商品库存列表 + foreach (array_unique(array_column($orderList, 'goods_id')) as $stock_goods_id) { + GoodsService::syncGoodsStock($stock_goods_id); + } } catch (\Exception $e) { return ['code' => 0, 'msg' => '商城订单创建失败,请稍候再试!' . $e->getLine() . $e->getFile() . $e->getMessage()]; }