|  |  |  | 
|---|
|  |  |  | @RequestParam(required = false) String condition, | 
|---|
|  |  |  | @RequestParam(required = false, value = "dept_id") Long deptId, | 
|---|
|  |  |  | @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)); | 
|---|
|  |  |  | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @RequestMapping(value = "/cstmr/add/auth") | 
|---|
|  |  |  | @ManagerAuth(memo = "添加甲方单位") | 
|---|
|  |  |  | @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("客户已存在"); | 
|---|
|  |  |  | 
|---|
|  |  |  | } | 
|---|
|  |  |  | return R.ok(orderService.getPage(new Page<>(curr, limit) | 
|---|
|  |  |  | , getHostId() | 
|---|
|  |  |  | , deptId == null ? null : String.valueOf(deptId) | 
|---|
|  |  |  | , userId == null ? getUserId() : userId | 
|---|
|  |  |  | , deptId == null ? (userId == null? getDeptId().toString(): null) : String.valueOf(deptId) | 
|---|
|  |  |  | , userId | 
|---|
|  |  |  | , condition | 
|---|
|  |  |  | , status) | 
|---|
|  |  |  | ); | 
|---|
|  |  |  | 
|---|
|  |  |  | @RequestParam(required = false, value = "user_id") Long userId) { | 
|---|
|  |  |  | return R.ok(planService.getPage(new Page<>(curr, limit) | 
|---|
|  |  |  | , getHostId() | 
|---|
|  |  |  | , deptId == null ? null : String.valueOf(deptId) | 
|---|
|  |  |  | , userId == null ? getUserId() : userId | 
|---|
|  |  |  | , deptId == null ? (userId == null? getDeptId().toString(): null) : String.valueOf(deptId) | 
|---|
|  |  |  | , userId | 
|---|
|  |  |  | , condition) | 
|---|
|  |  |  | ); | 
|---|
|  |  |  | } | 
|---|