Commit 8f37ec59 by Mahjong

专家处理商机,更新预约状态,给客户发送预约成功短信,小程序发送预约成功通知4

parent 82a163ec
...@@ -997,7 +997,12 @@ public class PractitionerServiceImpl implements com.yd.api.practitioner.service. ...@@ -997,7 +997,12 @@ public class PractitionerServiceImpl implements com.yd.api.practitioner.service.
info.setAge(customer.getAge()); info.setAge(customer.getAge());
info.setBirthDate(CommonUtil.dateParseString(customer.getBirthDate(),"yyyy-MM-dd")); info.setBirthDate(CommonUtil.dateParseString(customer.getBirthDate(),"yyyy-MM-dd"));
info.setGender(customer.getGender()); info.setGender(customer.getGender());
info.setMobileNo(customer.getMobileNo()); String mobileNo = customer.getMobileNo();
if (StringUtils.isNotBlank(mobileNo) && mobileNo.length() >11) {
DESTypeHandler jpaCryptoConverter = new DESTypeHandler();
mobileNo = jpaCryptoConverter.decode(mobileNo);
}
info.setMobileNo(mobileNo);
info.setWeChat(customer.getWechatNo()); info.setWeChat(customer.getWechatNo());
info.setOtherContacts(customer.getOtherContacts()); info.setOtherContacts(customer.getOtherContacts());
info.setZodiacTypeId(customer.getZodiacTypeId()); info.setZodiacTypeId(customer.getZodiacTypeId());
......
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