Commit 82a163ec by Mahjong

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

parent 325713a9
...@@ -897,6 +897,12 @@ public class PractitionerServiceImpl implements com.yd.api.practitioner.service. ...@@ -897,6 +897,12 @@ public class PractitionerServiceImpl implements com.yd.api.practitioner.service.
List<OwnOpportunityInfo> ownOpportunityInfos = aclPractitionerDALService.ownOpportunityQuery(practitionerId); List<OwnOpportunityInfo> ownOpportunityInfos = aclPractitionerDALService.ownOpportunityQuery(practitionerId);
for (OwnOpportunityInfo info : ownOpportunityInfos) { for (OwnOpportunityInfo info : ownOpportunityInfos) {
info.setOrderId(opportunityDateMap.get(info.getOpportunityId())); info.setOrderId(opportunityDateMap.get(info.getOpportunityId()));
if(info.getMobileNo() != null && info.getMobileNo().length() >11){
DESTypeHandler jpaCryptoConverter = new DESTypeHandler();
info.setMobileNo(jpaCryptoConverter.decode(info.getMobileNo()));
}
} }
responseVO.setOwnOpportunityInfos(ownOpportunityInfos); responseVO.setOwnOpportunityInfos(ownOpportunityInfos);
responseVO.setCommonResult(new CommonResult(true, ZHBErrorConfig.getErrorInfo("800000"))); responseVO.setCommonResult(new CommonResult(true, ZHBErrorConfig.getErrorInfo("800000")));
......
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