|
@@ -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");
|