去除跟进人+86查询

This commit is contained in:
xiaodong.hu
2023-07-12 16:15:01 +08:00
parent c6cc181554
commit a16a7c41c8

View File

@@ -132,7 +132,7 @@ public class EcSyncServiceImpl implements EcSyncService {
String followUserMobile = customerInfoItem.getFollowUserMobile(); String followUserMobile = customerInfoItem.getFollowUserMobile();
//传递过来有跟进人的情况下查询跟进人是否存在 //传递过来有跟进人的情况下查询跟进人是否存在
if (StringUtil.isNotEmpty(followUserMobile)&&StringUtil.isNotEmpty(followUserName)) { if (StringUtil.isNotEmpty(followUserMobile)&&StringUtil.isNotEmpty(followUserName)) {
String userId = enterpriseUserDAO.selectByMobile("+86"+followUserMobile); String userId = enterpriseUserDAO.selectByMobile(followUserMobile);
if (StringUtil.isEmpty(userId)) { if (StringUtil.isEmpty(userId)) {
// 给飞书群发送消息 跟进人找不到 // 给飞书群发送消息 跟进人找不到
sendFeiShuRobotMessage("推送:飞书架构中找不到该用户:【" + followUserName + "】,该用户电话号码为:" + followUserMobile,"27243d49-97ca-4981-8aec-7c3bf84eb660"); sendFeiShuRobotMessage("推送:飞书架构中找不到该用户:【" + followUserName + "】,该用户电话号码为:" + followUserMobile,"27243d49-97ca-4981-8aec-7c3bf84eb660");