| | |
| | | } |
| | | } |
| | | |
| | | Long director = null; |
| | | if (deptId==null && userId == null){ |
| | | if (getRole().getId()==3){ |
| | | userId = getUserId(); |
| | |
| | | deptId = getDeptId(); |
| | | userId = null; |
| | | } |
| | | // director = getUserId(); |
| | | } |
| | | |
| | | return R.ok(cstmrService.getPage3(new Page<>(curr, limit) |
| | | , getHostId() |
| | | , deptId == null ? null : String.valueOf(deptId) |
| | | , userId |
| | | , director |
| | | , Cools.isEmpty(followerName) ? null : ids |
| | | , conditionName |
| | | , condition) |
| | |
| | | |
| | | } |
| | | } |
| | | Long director = null; |
| | | if (deptId==null && userId == null){ |
| | | if (getRole().getId()==3){ |
| | | userId = getUserId(); |
| | |
| | | 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) |
| | |
| | | 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) { |