中扬CRM客户关系管理系统
#
LSH
2023-08-10 f990d41ed26b2640ca87d13d53e0dd85675aafb5
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("未查询到跟进人信息!");