|
@@ -34,6 +34,9 @@ public class MsgSubscriptLogic {
|
|
|
@Autowired
|
|
|
WechatLogic wechatLogic;
|
|
|
|
|
|
+ @Value("${wechat.template}")
|
|
|
+ private String template;
|
|
|
+
|
|
|
|
|
|
/**
|
|
|
* 发货通知
|
|
@@ -72,8 +75,7 @@ public class MsgSubscriptLogic {
|
|
|
data.put("character_string5", keyword4);
|
|
|
}
|
|
|
User user = userService.getById(userId);
|
|
|
- String template = WxConfiguration.temFhNotice.get(null);
|
|
|
- String res = sendWxMsg(openId, data, template, "pages/mine/order/detail?orderId="+orderId,null);
|
|
|
+ String res = sendWxMsg(openId, data, template, "pages/mine/order/detail?orderId="+orderId,user.getCompanyId());
|
|
|
log.info("-----------------完成发货通知消息返回:" + res);
|
|
|
}
|
|
|
|