From affb9fbb6862699df4495517c41c62be7b5e10a6 Mon Sep 17 00:00:00 2001
From: LSH
Date: 星期四, 09 十一月 2023 14:56:55 +0800
Subject: [PATCH] #

---
 src/main/java/com/zy/crm/manager/controller/CstmrController.java |   74 +++++++++++++++++++++++++++++++++++-
 1 files changed, 71 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..9beaad8 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,23 @@
 
             }
         }
+
+        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 ? null : String.valueOf(deptId)
-                , userId == null ? getUserId() : userId
+                , userId
+                , director
                 , Cools.isEmpty(followerName) ? null : ids
                 , conditionName
                 , condition)
@@ -157,10 +175,22 @@
 
             }
         }
+        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 == null ? getUserId() : userId
+                , userId
+                , director
                 , Cools.isEmpty(followerName) ? null : ids
                 , conditionName
                 , condition)
@@ -168,8 +198,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("瀹㈡埛宸插瓨鍦�");
@@ -196,6 +231,35 @@
         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));  // 瀹㈡埛浠e彿
+        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) {
@@ -204,6 +268,10 @@
             return R.error("浣犳棤娉曟帴鍙栨鐢叉柟鍗曚綅!");
         }
         cstmr1.setDirector(getUserId());
+        cstmr.setDeptId(getDeptId());               // 鎵�灞為儴闂�
+        cstmr.setUserId(getUserId());               // 鎵�灞炰汉鍛�
+        cstmr.setUpdateBy(getUserId());
+        cstmr.setUpdateTime(new Date());
         cstmrService.updateById(cstmr1);
         return R.ok();
     }

--
Gitblit v1.9.1