|
|
@@ -528,11 +528,12 @@ public class GoodsWholesalePayServiceImpl implements GoodsWholesalePayService {
|
|
|
User user = userMapper.selectById(orderDon.getUserId());
|
|
|
Integer num = orderDon.getNum();
|
|
|
GoodsDon goodsDon = goodsDonMapper.selectById(orderDon.getGoodsId());
|
|
|
+ GoodsDonSku sku = skuMapper.selectById(orderDon.getSkuId());
|
|
|
List<String> phones = List.of("18260166919");
|
|
|
if (envCommonService.isPrdEnv()) {
|
|
|
phones = Constant.GOODS_WHOLESALE_PHONE;
|
|
|
}
|
|
|
- String msg = String.format(Constant.GOODS_WHOLESALE_MSG, user.getNickname(), num, goodsDon.getTitle());
|
|
|
+ String msg = String.format(Constant.GOODS_WHOLESALE_MSG, user.getNickname(), num, goodsDon.getTitle() + sku.getSpecVal());
|
|
|
log.info("批发通知短信内容:{}", msg);
|
|
|
SmsUtil.batchSendLuoKey2Msg(phones, msg);
|
|
|
} catch (Exception e) {
|