1.修改预警通知标题

This commit is contained in:
2024-07-25 15:01:29 +08:00
parent 94fcc2ae09
commit d7223fe70b
2 changed files with 2 additions and 2 deletions

View File

@@ -280,7 +280,7 @@ public class OrderService {
) {
List<TbShopOpenId> shopOpenIds = shopOpenIdMapper.selectByShopId(Integer.valueOf(product.getShopId()));
shopOpenIds.forEach(item -> {
wxAccountUtil.sendStockWarnMsg(shopInfo.getShopName(), product.getName(),
wxAccountUtil.sendStockWarnMsg("商品库存不足", product.getName(),
product.getIsDistribute() == 1 ? String.valueOf(product.getStockNumber()-num) : String.valueOf(productSku.getStockNumber() - num), item.getOpenId());
});
}