|
@@ -863,13 +863,13 @@ public class StudentRegistrationServiceImpl extends BaseServiceImpl<Long, Studen
|
|
|
throw new BizException("减去缴费人数失败");
|
|
|
}
|
|
|
//发送缴费成功通知(短信 + push)
|
|
|
- String studentApplyUrl = sysConfigDao.findConfigValue(SysConfigService.STUDENT_APPLY_URL + studentRegistration.getMusicGroupId());
|
|
|
+ String studentApplyUrl = sysConfigDao.findConfigValue(SysConfigService.STUDENT_APPLY_URL) + studentRegistration.getMusicGroupId();
|
|
|
|
|
|
Map<Integer, String> map = new HashMap<>(1);
|
|
|
map.put(studentPaymentOrder.getUserId(), studentRegistration.getParentsPhone());
|
|
|
sysMessageService.batchSendMessage(MessageSenderPluginContext.MessageSender.YIMEI,
|
|
|
MessageTypeEnum.STUDENT_SMS_PAYMENT_FAILED, map, null, 0, "1",
|
|
|
- studentApplyUrl);
|
|
|
+ HttpUtil.getSortUrl(studentApplyUrl));
|
|
|
// sysMessageService.batchSendMessage(MessageSenderPluginContext.MessageSender.JIGUANG,
|
|
|
// MessageTypeEnum.STUDENT_SMS_PAYMENT_FAILED,map,null,0,"1",
|
|
|
// studentApplyUrl);
|