Commit 4d5ef78e authored by xiaosl's avatar xiaosl

客服手机号处理

parent 430038a3
......@@ -229,7 +229,11 @@ public class OrderMsgBiz {
//后台发送消息(客服)
Cofig cofig = configFeign.getAllByType(ConfigFeign.TYPE_CUS_SER+ "").getData().get(0);
smsParams.clear();
sms2BgUser(cofig.getValue(), startCompanyDetail, endCompanyDetail, orvd, otd, baseOrder, appUserDTO, SmsTemplateDTO.PAY_C, smsParams);
String phoneValue = cofig.getValue();
if (phoneValue != null) {
phoneValue = phoneValue.replaceAll("<p>", "").replace("</p>","");
}
sms2BgUser(phoneValue, startCompanyDetail, endCompanyDetail, orvd, otd, baseOrder, appUserDTO, SmsTemplateDTO.PAY_C, smsParams);
//后台发送消息(出车人)
smsParams.clear();
......
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