Browse Source

导出数据权限过滤

yangyue 1 year ago
parent
commit
e286b8179e

+ 12 - 1
duty-service/src/main/java/cn/com/taiji/duty/controller/DutyLoginLogController.java

@@ -87,7 +87,18 @@ public class DutyLoginLogController {
 
     @ApiOperation("导出登录日志列表")
     @PostMapping("export")
-    public void export(HttpServletResponse response, @RequestBody(required = false) DutyLoginLogVo vo) {
+    public void export(HttpServletRequest request, HttpServletResponse response, @RequestBody(required = false) DutyLoginLogVo vo) {
+        String token = JwtUtils.getToken(request);
+        String username = redisTemplate.opsForValue().get(token);
+        DutyAccount account = accountService.findByUsername(username);
+        if (account != null) {
+            List<DutyRole> roles = account.getRoles();
+            List<String> stringList = roles.parallelStream().map(DutyRole::getPermissionValue).filter(Objects::nonNull).distinct().collect(Collectors.toList());
+            String join = StringUtils.join(stringList, ",");
+            if (join.contains("ZBY")) {
+                vo.setDeptId(account.getDept().getId());
+            }
+        }
         List<DutyLoginLog> list = loginLogService.queryList(vo);
         DutyOperLog operLog = new DutyOperLog();
         operLog.setOperModule("8");

+ 12 - 1
duty-service/src/main/java/cn/com/taiji/duty/controller/DutyOperLogController.java

@@ -83,7 +83,18 @@ public class DutyOperLogController {
 
     @ApiOperation("导出操作日志列表")
     @PostMapping("export")
-    public void export(HttpServletResponse response, @RequestBody(required = false) DutyOperLogVo vo) {
+    public void export(HttpServletRequest request, HttpServletResponse response, @RequestBody(required = false) DutyOperLogVo vo) {
+        String token = JwtUtils.getToken(request);
+        String username = redisTemplate.opsForValue().get(token);
+        DutyAccount account = accountService.findByUsername(username);
+        if (account != null) {
+            List<DutyRole> roles = account.getRoles();
+            List<String> stringList = roles.parallelStream().map(DutyRole::getPermissionValue).filter(Objects::nonNull).distinct().collect(Collectors.toList());
+            String join = StringUtils.join(stringList, ",");
+            if (join.contains("ZBY")) {
+                vo.setDeptId(account.getDept().getId());
+            }
+        }
         List<DutyOperLog> list = operLogService.queryList(vo);
         DutyOperLog operLog = new DutyOperLog();
         operLog.setOperModule("9");

+ 12 - 1
duty-service/src/main/java/cn/com/taiji/duty/controller/DutySignInRecordController.java

@@ -114,7 +114,18 @@ public class DutySignInRecordController {
 
     @ApiOperation("导出签卡记录列表")
     @PostMapping("export")
-    public void export(HttpServletResponse response, @RequestBody(required = false) DutySignInRecordVo signInRecordVo) {
+    public void export(HttpServletRequest request, HttpServletResponse response, @RequestBody(required = false) DutySignInRecordVo signInRecordVo) {
+        String token = JwtUtils.getToken(request);
+        String username = redisTemplate.opsForValue().get(token);
+        DutyAccount account = accountService.findByUsername(username);
+        if (account != null) {
+            List<DutyRole> roles = account.getRoles();
+            List<String> stringList = roles.parallelStream().map(DutyRole::getPermissionValue).filter(Objects::nonNull).distinct().collect(Collectors.toList());
+            String join = StringUtils.join(stringList, ",");
+            if (join.contains("ZBY")) {
+                signInRecordVo.setDeptId(account.getDept().getId());
+            }
+        }
         List<DutySignInRecord> list = signInRecordService.queryList(signInRecordVo);
         DutyOperLog operLog = new DutyOperLog();
         operLog.setOperModule("2");