Commit ddb22da2 by 吕明尚

地址限制20个字符

parent 3a7625e5
......@@ -563,10 +563,8 @@ public class WechatNewServiceImpl implements WechatNewService {
//地址
//截取20个字符
String address = sStore.getAddress();
if (address.length() > 20) {
address = address.substring(0, 20);
}
data.put("thing9", new SendTemplateMessageItemVo(address));
String substring = address.substring(0, 20);
data.put("thing9", new SendTemplateMessageItemVo(substring));
//订单金额
data.put("amount4", new SendTemplateMessageItemVo(String.valueOf(byOrderNo.getPackPrice())));
} else if (messageReminderEnum.equals(MessageReminderEnum.END)) {
......@@ -580,10 +578,8 @@ public class WechatNewServiceImpl implements WechatNewService {
//地址
//截取20个字符
String address = sStore.getAddress();
if (address.length() > 20) {
address = address.substring(0, 20);
}
data.put("thing8", new SendTemplateMessageItemVo(address));
String substring = address.substring(0, 20);
data.put("thing8", new SendTemplateMessageItemVo(substring));
}
templateMessageVo.setData(data);
return sendMiniSubscribeMessage(templateMessageVo);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment