中扬CRM客户关系管理系统
LSH
2023-08-17 1ca7b0411ab10ff36d7184d6a71c39be886d7af5
src/main/java/com/zy/crm/manager/controller/CstmrController.java
@@ -76,9 +76,9 @@
        if (!Cools.isEmpty(followerName)){
            User username = userService.selectOne(new EntityWrapper<User>().eq("username", followerName));
            if (!Cools.isEmpty(username)){
                List<Integer> cstmrIds = cstmrFollService.selectCstmrIdUserId(username.getId().intValue());
                for (Integer id : cstmrIds){
                    ids.add(id);
                List<CstmrFoll> cstmrIds = cstmrFollService.selectCstmrIdUserId(username.getId().intValue());
                for (CstmrFoll id : cstmrIds){
                    ids.add(id.getCstmrId().intValue());
                }
            }else {
                return R.error("未查询到跟进人信息!");