中扬CRM客户关系管理系统
LSH
2024-03-26 7e408b4de778506c1544fa8f34ff289dd8b8c8df
src/main/java/com/zy/crm/manager/controller/CstmrController.java
@@ -16,9 +16,12 @@
import com.zy.crm.manager.entity.Cstmr;
import com.zy.crm.manager.entity.CstmrFoll;
import com.zy.crm.manager.entity.CstmrType;
import com.zy.crm.manager.entity.Order;
import com.zy.crm.manager.service.CstmrFollService;
import com.zy.crm.manager.service.CstmrService;
import com.zy.crm.manager.service.CstmrTypeService;
import com.zy.crm.manager.service.OrderService;
import com.zy.crm.manager.utils.CompanySearchUtils;
import com.zy.crm.system.entity.Dept;
import com.zy.crm.system.entity.Dic;
import com.zy.crm.system.entity.Role;
@@ -56,6 +59,8 @@
    private DicService dicService;
    @Autowired
    private DeptService deptService;
    @Autowired
    private OrderService orderService;
    @RequestMapping(value = "/cstmr/{id}/auth")
    @ManagerAuth
@@ -63,15 +68,43 @@
        return R.ok(cstmrService.selectById(String.valueOf(id)));
    }
    @RequestMapping(value = "/cstmr/name/check/auth")
    @ManagerAuth
    public R getName(String name) {
        Cstmr cstmr = cstmrService.selectByName(getHostId(), name);
        if (Cools.isEmpty(cstmr) || cstmr==null){
            return R.ok();
        }else {
            return R.error(name+"已存在");
        }
    }
    @RequestMapping(value = "/cstmr/page/auth")
    @ManagerAuth
    public R page(@RequestParam(defaultValue = "1") Integer curr,
                  @RequestParam(defaultValue = "10") Integer limit,
                  @RequestParam(required = false) String followerName,
                  @RequestParam(required = false) String conditionName,
                  @RequestParam(required = false) String condition,
                  @RequestParam(required = false, value = "dept_id") Long deptId,
                  @RequestParam(required = false, value = "role_id") Long roleId,
                  @RequestParam(required = false, value = "user_id") Long userId){
        if (getUser().getRoleId()!=1){
            if (!getUser().getNickname().equals("陈燕")){
                return R.ok(new Page<Cstmr>());
            }
        }
        List<Integer> ids = new ArrayList<>();
        if (!Cools.isEmpty(followerName)){
            User username = userService.selectOne(new EntityWrapper<User>().eq("username", followerName));
            if (!Cools.isEmpty(username)){
                List<CstmrFoll> cstmrIds = cstmrFollService.selectCstmrIdUserId(username.getId().intValue());
                for (CstmrFoll id : cstmrIds){
                    ids.add(id.getCstmrId().intValue());
                }
            }else {
                return R.error("未查询到跟进人信息!");
            }
        }
        if (!Cools.isEmpty(conditionName)){
            switch (conditionName){
                case "director":
@@ -85,22 +118,103 @@
            }
        }
        return R.ok(cstmrService.getPage2(new Page<>(curr, limit)
        Long director = null;
        if (deptId==null && userId == null){
            if (getRole().getId()==3){
                userId = getUserId();
            }else if (getRole().getId()==2){
                deptId = getDeptId();
                userId = null;
            }
//            director = getUserId();
        }
        return R.ok(cstmrService.getPage3(new Page<>(curr, limit)
                , getHostId()
                , deptId == null ? userService.selectById(getUserId()).getDeptId() : deptId
                , userId == null ? getUserId() : userId
                , roleId == null ? userService.selectById(getUserId()).getRoleId() : roleId
                , deptId == null ? null : String.valueOf(deptId)
                , userId
                , director
                , Cools.isEmpty(followerName) ? null : ids
                , conditionName
                , condition)
        );
    }
    @RequestMapping(value = "/cstmr2/page/auth")
    @ManagerAuth
    public R page2(@RequestParam(defaultValue = "1") Integer curr,
                  @RequestParam(defaultValue = "10") Integer limit,
                  @RequestParam(required = false) String followerName,
                  @RequestParam(required = false) String conditionName,
                  @RequestParam(required = false) String condition,
                  @RequestParam(required = false, value = "dept_id") Long deptId,
                  @RequestParam(required = false, value = "user_id") Long userId){
        List<Integer> ids = new ArrayList<>();
        if (!Cools.isEmpty(followerName)){
            User username = userService.selectOne(new EntityWrapper<User>().eq("username", followerName));
            if (!Cools.isEmpty(username)){
                List<CstmrFoll> cstmrIds = cstmrFollService.selectCstmrIdUserId(username.getId().intValue());
                for (CstmrFoll id : cstmrIds){
                    ids.add(id.getCstmrId().intValue());
                }
            }else {
                return R.error("未查询到跟进人信息!");
            }
        }
        if (!Cools.isEmpty(conditionName)){
            switch (conditionName){
                case "director":
                    try {
                        condition=userService.selectOne(new EntityWrapper<User>().eq("username", condition)).getId().toString();
                    }catch (Exception e){
                        conditionName = null;
                    }
                    break;
                default:
            }
        }
        Long director = null;
        if (deptId==null && userId == null){
            if (getRole().getId()==3){
                userId = getUserId();
            }else if (getRole().getId()==2){
                deptId = getDeptId();
                userId = null;
            }
            director = getUserId();
        }
        return R.ok(cstmrService.getPage33(new Page<>(curr, limit)
                , getHostId()
                , deptId == null ? null : String.valueOf(deptId)
                , userId
                , director
                , Cools.isEmpty(followerName) ? null : ids
                , conditionName
                , condition)
        );
    }
    @RequestMapping(value = "/cstmr/add/auth")
    @ManagerAuth
    @ManagerAuth(memo = "添加客户信息公海")
    public R add(Cstmr cstmr) {
        if (getUser().getRoleId()!=1){
            if (!getUser().getNickname().equals("陈燕")){
                return R.error("您没有添加权限");
            }
        }
        Long hostId = getHostId();
        if (cstmrService.selectByUuid(hostId, cstmr.getUuid()) != null) {
            throw new CoolException("客户已存在");
        }
        if (cstmrService.selectByName(hostId, cstmr.getName()) != null) {
            throw new CoolException("客户已存在");
        }
        Cstmr cstmr1 = cstmrService.selectByName(hostId, cstmr.getName());
        if (cstmr1!=null){
            throw new CoolException("该客户信息已存在,业务员是:"+cstmr1.getDirector$());
        }
        cstmr.setHostId(hostId);
        cstmr.setUuid(cstmrService.getUuid(hostId));  // 客户代号
@@ -111,32 +225,97 @@
        cstmr.setCreateTime(new Date());
        cstmr.setUpdateBy(getUserId());
        cstmr.setUpdateTime(new Date());
//        cstmr.setDirector(getUserId());
        cstmr.setStatus(1);
        cstmrService.insert(cstmr);
        return R.ok();
    }
    @RequestMapping(value = "/cstmr/add2/auth")
    @ManagerAuth(memo = "添加客户信息公海")
    public R add22(Cstmr cstmr) {
        Long hostId = getHostId();
        if (cstmrService.selectByUuid(hostId, cstmr.getUuid()) != null) {
            throw new CoolException("客户已存在");
        }
        if (cstmrService.selectByName(hostId, cstmr.getName()) != null) {
            throw new CoolException("客户已存在");
        }
        Cstmr cstmr1 = cstmrService.selectByName(hostId, cstmr.getName());
        if (cstmr1!=null){
            throw new CoolException("该客户信息已存在,业务员是:"+cstmr1.getDirector$());
        }
        cstmr.setHostId(hostId);
        cstmr.setUuid(cstmrService.getUuid(hostId));  // 客户代号
        cstmr.setDeptId(getDeptId());               // 所属部门
        cstmr.setUserId(getUserId());               // 所属人员
        cstmr.setCreateBy(getUserId());
        cstmr.setCreateTime(new Date());
        cstmr.setUpdateBy(getUserId());
        cstmr.setUpdateTime(new Date());
        cstmr.setDirector(getUserId());
        cstmr.setStatus(1);
        cstmrService.insert(cstmr);
        return R.ok();
    }
    @RequestMapping(value = "/cstmr2/add/auth")
    @ManagerAuth(memo = "接取客户信息")
    public R add2(Cstmr cstmr) {
        Cstmr cstmr1 = cstmrService.selectByName(getHostId(),cstmr.getName());
        if (Cools.isEmpty(cstmr1) || cstmr1.getDirector()!=null){
            return R.error("你无法接取此客户信息!");
        }
        cstmr1.setDirector(getUserId());
        cstmr1.setDeptId(getDeptId());               // 所属部门
        cstmr1.setUserId(getUserId());               // 所属人员
        cstmr1.setUpdateBy(getUserId());
        cstmr1.setUpdateTime(new Date());
        cstmrService.updateById(cstmr1);
        return R.ok();
    }
   @RequestMapping(value = "/cstmr/update/auth")
   @ManagerAuth
   @ManagerAuth(memo = "更新客户信息")
    public R update(Cstmr cstmr){
        if (Cools.isEmpty(cstmr) || null==cstmr.getId()){
            return R.error();
        }
        cstmr.setUpdateBy(getUserId());
        cstmr.setUpdateTime(new Date());
        if (!Cools.isEmpty(cstmr.getDirector())){
            User director = userService.selectById(cstmr.getDirector());
            cstmr.setDeptId(director.getDeptId());
            cstmr.setUserId(director.getId());
        }
        cstmrService.updateById(cstmr);
        return R.ok();
    }
    @RequestMapping(value = "/cstmr/delete/auth")
    @ManagerAuth
    @ManagerAuth(memo = "删除客户信息")
    public R delete(@RequestParam(value="ids[]") Long[] ids){
        for (Long id : ids){
            int order = orderService.selectCount(new EntityWrapper<Order>().eq("cstmr_id", id));
            if (order!=0){
                return R.error("存在关联的跟踪项目,禁止删除!!!");
            }
            cstmrService.deleteById(id);
        }
        return R.ok();
    }
    @RequestMapping(value = "/cstmr/delete/one/{id}")
    @ManagerAuth(memo = "删除客户信息")
    public R deleteOne(@PathVariable Long id) {
        int cstmr_id = orderService.selectCount(new EntityWrapper<Order>().eq("cstmr_id", id));
        if (cstmr_id!=0){
            return R.error("存在关联跟踪项目,禁止删除!!!");
        }
        cstmrService.deleteById(id);
        return R.ok();
    }
    @RequestMapping(value = "/cstmrQuery/auth")
@@ -155,6 +334,13 @@
        return R.ok(result);
    }
    @RequestMapping(value = "/cstmrSearch/auth")
    @ManagerAuth
    public R cstmrSearch(String condition) {
        List<Map<String, Object>> search = CompanySearchUtils.search(condition, 1);
        return R.ok(search);
    }
    @RequestMapping(value = "/cstmr/check/column/auth")
    @ManagerAuth
    public R query(@RequestBody JSONObject param) {
@@ -171,7 +357,7 @@
     * excel导入
     */
    @PostMapping(value = "/cstmr/excel/import/auth")
    @ManagerAuth(memo = "甲方单位Excel导入")
    @ManagerAuth(memo = "客户信息Excel导入")
//    @Transactional
    public R cstmrExcelImport(MultipartFile file) throws IOException {
        InputStream inStream = file.getInputStream();
@@ -372,6 +558,21 @@
        return R.ok().add(vos);
    }
    @RequestMapping("/cstmr2/all/get/kv")
    @ManagerAuth
    public R getDataKV2(@RequestParam(required = false) String condition) {
        User user = getUser(); assert user != null;
        Role role = getRole(); assert role != null;
        Page<Cstmr> page = cstmrService.getPageCstmr2(new Page<>(1, 30)
                , getHostId()
                , role.judgeLeader() ? String.valueOf(user.getDeptId()) : null
                , user.getId()
                , condition);
        List<KeyValueVo> vos = new ArrayList<>();
        page.getRecords().forEach(item -> vos.add(new KeyValueVo(item.getName(), item.getId())));
        return R.ok().add(vos);
    }
    @RequestMapping("/cstmr/file/import")
    @Transactional
    public R fileImport() throws IOException {