mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2025-04-06 03:58:04 +08:00
[更新]修正微信商城库存及销售量自动同步机制
This commit is contained in:
parent
a099bb6e70
commit
0479ce90d4
@ -86,7 +86,7 @@ class GoodsService
|
||||
}
|
||||
|
||||
/**
|
||||
* 同步更新商品库存及售出(@todo 需要重新做库存统计)
|
||||
* 同步更新商品库存及售出
|
||||
* @param int $goods_id 商品ID
|
||||
* @return array
|
||||
* @throws \think\Exception
|
||||
|
@ -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()];
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user