yinzuomei 3 years ago
parent
commit
dc78b88843
  1. 3
      epmet-module/epmet-heart/epmet-heart-server/src/main/java/com/epmet/service/impl/IcUserDemandRecServiceImpl.java

3
epmet-module/epmet-heart/epmet-heart-server/src/main/java/com/epmet/service/impl/IcUserDemandRecServiceImpl.java

@ -441,6 +441,9 @@ public class IcUserDemandRecServiceImpl extends BaseServiceImpl<IcUserDemandRecD
* @param mobile * @param mobile
*/ */
private void sendPhoneMsgToServer(String customerId,String staffId, String mobile) { private void sendPhoneMsgToServer(String customerId,String staffId, String mobile) {
if (StringUtils.isBlank(mobile) || mobile.length() < 11 || mobile.contains("-")) {
return;
}
// XXX社区给您指派了一个新的需求,请查看 // XXX社区给您指派了一个新的需求,请查看
CustomerStaffInfoCacheResult staffInfoCacheResult=CustomerStaffRedis.getStaffInfo(customerId,staffId); CustomerStaffInfoCacheResult staffInfoCacheResult=CustomerStaffRedis.getStaffInfo(customerId,staffId);
if (null == staffInfoCacheResult || StringUtils.isBlank(staffInfoCacheResult.getAgencyName())) { if (null == staffInfoCacheResult || StringUtils.isBlank(staffInfoCacheResult.getAgencyName())) {

Loading…
Cancel
Save