From f311718993dc0bcd193e03915076060815ee0036 Mon Sep 17 00:00:00 2001
From: LSH
Date: 星期三, 01 十一月 2023 19:01:50 +0800
Subject: [PATCH] #
---
src/main/java/com/zy/crm/manager/controller/CstmrController.java | 35 ++++++++++++++++++++++++++++++++---
1 files changed, 32 insertions(+), 3 deletions(-)
diff --git a/src/main/java/com/zy/crm/manager/controller/CstmrController.java b/src/main/java/com/zy/crm/manager/controller/CstmrController.java
index fc4669f..2b89d7a 100644
--- a/src/main/java/com/zy/crm/manager/controller/CstmrController.java
+++ b/src/main/java/com/zy/crm/manager/controller/CstmrController.java
@@ -88,6 +88,11 @@
@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));
@@ -113,10 +118,20 @@
}
}
+
+ if (deptId==null && userId == null){
+ if (getRole().getId()==3){
+ userId = getUserId();
+ }else if (getRole().getId()==2){
+ deptId = getDeptId();
+ userId = null;
+ }
+ }
+
return R.ok(cstmrService.getPage3(new Page<>(curr, limit)
, getHostId()
, deptId == null ? null : String.valueOf(deptId)
- , userId == null ? getUserId() : userId
+ , userId
, Cools.isEmpty(followerName) ? null : ids
, conditionName
, condition)
@@ -157,10 +172,19 @@
}
}
+ if (deptId==null && userId == null){
+ if (getRole().getId()==3){
+ userId = getUserId();
+ }else if (getRole().getId()==2){
+ deptId = getDeptId();
+ userId = null;
+ }
+ }
+
return R.ok(cstmrService.getPage33(new Page<>(curr, limit)
, getHostId()
, deptId == null ? null : String.valueOf(deptId)
- , userId == null ? getUserId() : userId
+ , userId
, Cools.isEmpty(followerName) ? null : ids
, conditionName
, condition)
@@ -168,8 +192,13 @@
}
@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("瀹㈡埛宸插瓨鍦�");
--
Gitblit v1.9.1