[更新]修正微信商城库存及销售量自动同步机制

This commit is contained in:
Anyon 2018-05-09 11:31:09 +08:00
parent a099bb6e70
commit 0479ce90d4
2 changed files with 5 additions and 2 deletions

View File

@ -86,7 +86,7 @@ class GoodsService
} }
/** /**
* 同步更新商品库存及售出@todo 需要重新做库存统计) * 同步更新商品库存及售出
* @param int $goods_id 商品ID * @param int $goods_id 商品ID
* @return array * @return array
* @throws \think\Exception * @throws \think\Exception

View File

@ -68,7 +68,10 @@ class OrderService
Db::name('StoreOrderGoods')->insertAll($orderList); // 订单关联的商品信息 Db::name('StoreOrderGoods')->insertAll($orderList); // 订单关联的商品信息
Db::name('storeOrderExpress')->insert($expressResult['data']); // 快递信息 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) { } catch (\Exception $e) {
return ['code' => 0, 'msg' => '商城订单创建失败,请稍候再试!' . $e->getLine() . $e->getFile() . $e->getMessage()]; return ['code' => 0, 'msg' => '商城订单创建失败,请稍候再试!' . $e->getLine() . $e->getFile() . $e->getMessage()];
} }