修复秒杀商品下单时,不会更新秒杀商品的出售数量问题

This commit is contained in:
paulGao
2022-03-02 11:49:41 +08:00
parent e27185d424
commit c4307aa821
8 changed files with 36 additions and 36 deletions

View File

@@ -332,7 +332,7 @@ public class StockUpdateExecute implements OrderStatusChangeEvent {
Integer num = promotionGoods.get(i).getNum();
promotionGoods.get(i).setNum((num != null ? num : 0) + order.getOrder().getGoodsNum());
}
promotionGoodsService.updateBatchById(promotionGoods);
promotionGoodsService.updatePromotionGoodsStock(promotionGoods);
}
//商品库存包含sku库存集合批量更新商品库存相关
goodsSkuService.updateGoodsStuck(goodsSkus);