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()]; }