|
@@ -231,13 +231,6 @@ public class UserController {
|
|
|
if (ObjectUtil.isNotEmpty(userDTO)){
|
|
|
if (ObjectUtil.isNotEmpty(userDTO.getCompanyDTO()) && ObjectUtil.isNotEmpty(userDTO.getOfficeDTO())) {
|
|
|
String id = UserUtils.getCurrentUserDTO().getCompanyDTO().getId();
|
|
|
- //判断当前登录人是否是综合管理公司人员
|
|
|
- if (id.equals("1680778353809350658")){
|
|
|
-
|
|
|
- }else {
|
|
|
- //如果不是综合管理公司人员
|
|
|
- queryWrapper.eq("a.company_id",id);
|
|
|
- }
|
|
|
if (StringUtils.isNotBlank(userDTO.getCertType())) {
|
|
|
//获取当前登陆人是否事中审公司人员
|
|
|
/*if(officeDTO.getParentIds().contains("1615171302381182978")){
|
|
@@ -1001,6 +994,104 @@ public class UserController {
|
|
|
}
|
|
|
|
|
|
|
|
|
+ /**
|
|
|
+ * 查询资质用户列表
|
|
|
+ */
|
|
|
+ @ApiLog("查询资质用户列表")
|
|
|
+ @ApiOperation(value = "查询资质用户列表")
|
|
|
+ //@PreAuthorize("hasAuthority('sys:user:list')")
|
|
|
+ @GetMapping("certList")
|
|
|
+ public ResponseEntity certList(UserDTO userDTO, Page <UserDTO> page) throws Exception {
|
|
|
+ QueryWrapper <UserDTO> queryWrapper = QueryWrapperGenerator.buildQueryCondition ( userDTO, UserDTO.class );
|
|
|
+ // 管理员查询不限制
|
|
|
+ if (!UserUtils.getCurrentUserDTO().isAdmin()) {
|
|
|
+ queryWrapper.isNull("a.is_admin");
|
|
|
+ if (ObjectUtil.isNotEmpty(userDTO)){
|
|
|
+ if (ObjectUtil.isNotEmpty(userDTO.getCompanyDTO()) && ObjectUtil.isNotEmpty(userDTO.getOfficeDTO())) {
|
|
|
+ String id = UserUtils.getCurrentUserDTO().getCompanyDTO().getId();
|
|
|
+ //判断当前登录人是否是综合管理公司人员
|
|
|
+ if (id.equals("1680778353809350658")){
|
|
|
+
|
|
|
+ }else {
|
|
|
+ //如果不是综合管理公司人员
|
|
|
+ queryWrapper.eq("a.company_id",id);
|
|
|
+ }
|
|
|
+ if (StringUtils.isNotBlank(userDTO.getCertType())) {
|
|
|
+ //获取当前登陆人是否事中审公司人员
|
|
|
+ /*if(officeDTO.getParentIds().contains("1615171302381182978")){
|
|
|
+
|
|
|
+ }*/
|
|
|
+ }else{
|
|
|
+ // 当不是精确的部门查询时,再添加下面的筛选条件
|
|
|
+ if ((StringUtils.isNotBlank(userDTO.getCompanyDTO().getId()) && StringUtils.isBlank(userDTO.getOfficeDTO().getId()))
|
|
|
+ || "true".equals(userDTO.getSelectAll())) {
|
|
|
+ // officeDTO.id是空,companyDTO.id不是空的话,说明前端组件点击的集团来进行查询
|
|
|
+ // selectAll为‘true’的话,说明前端没有选择集团或者部门查询,这个时候要展示全部人员
|
|
|
+ // 根据当前用户的部门id找到此部门的ids
|
|
|
+ String ids = officeService.getById(UserUtils.getCurrentUserDTO().getOfficeDTO().getId()).getParentIds();
|
|
|
+ // 根据ids分隔后的index[2],找到当前用户的所属公司id
|
|
|
+ String companyId = null;
|
|
|
+ String[] split = ids.split(",");
|
|
|
+ // split.length大于2,说明当前登录人所属部门是普通部门,展示部分人员信息
|
|
|
+ // 否则,当前登录人所属公共类部门(忘了叫什么类部门了,就是总经办那种部门),展示全部人员信息
|
|
|
+ if(split.length>2){
|
|
|
+ companyId = split[2];
|
|
|
+ // 根据公司id,找到此公司下的所有部门
|
|
|
+ List<Office> officeList = officeService.list(new QueryWrapper<Office>().lambda().eq(Office::getParentId, companyId));
|
|
|
+ Set officeIdSet = new HashSet();
|
|
|
+ for (Office office : officeList) {
|
|
|
+ if(StringUtils.isNotBlank(office.getId())){
|
|
|
+ officeIdSet.add(office.getId());
|
|
|
+ }
|
|
|
+ }
|
|
|
+ List<String> officeIdList = Lists.newArrayList(officeIdSet);
|
|
|
+ // 拿到这些部门的id
|
|
|
+ //List<String> officeIdList = officeList.stream().distinct().map(Office::getId).collect(Collectors.toList());
|
|
|
+ // 拿到所有公有部门的id
|
|
|
+ List<String> officePublicIdList = officeService.list(new LambdaQueryWrapper<Office>().eq(Office::getIsPublic,"1")).stream().map(Office::getId).collect(Collectors.toList());
|
|
|
+ // 拿到直属公司的id
|
|
|
+ officeIdList.add(companyId);
|
|
|
+ // 最后得到的所有部门的id
|
|
|
+ officeIdList.addAll(officePublicIdList);
|
|
|
+ List<String> lastIds = officeIdList.stream().distinct().collect(Collectors.toList());
|
|
|
+ // 添加筛选条件为这些部门的id
|
|
|
+ queryWrapper.in("a.office_id",lastIds);
|
|
|
+ }
|
|
|
+ } else if(StringUtils.isBlank(userDTO.getCompanyDTO().getId()) && StringUtils.isNotBlank(userDTO.getOfficeDTO().getId())) {
|
|
|
+ // officeDTO.id不是空,companyDTO.id是空的话,说明前端组件点击的部门查询
|
|
|
+ queryWrapper.eq("a.office_id",userDTO.getOfficeDTO().getId());
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ if (ObjectUtil.isNotEmpty(userDTO)) {
|
|
|
+ // 当certType传值时,获取拥有此资格证类型的人员
|
|
|
+ if (StringUtils.isNotBlank(userDTO.getCertType())) {
|
|
|
+ queryWrapper.eq("sc.type",userDTO.getCertType());
|
|
|
+ }
|
|
|
+ if ( userDTO.getTenantDTO ( ) != null && StrUtil.isNotBlank ( userDTO.getTenantDTO ( ).getId ( ) ) ) {
|
|
|
+ queryWrapper.eq ( "a.tenant_id", userDTO.getTenantDTO ( ).getId ( ) );
|
|
|
+ }
|
|
|
+ }
|
|
|
+ IPage <UserDTO> result = userService.findCertPage ( page, queryWrapper );
|
|
|
+ //判断 如果是签字注师筛选,则获取签字注师的被选择次数
|
|
|
+ if(StringUtils.isNotBlank(userDTO.getCertType()) && "6".equals(userDTO.getCertType())){
|
|
|
+ List<UserDTO> userList = result.getRecords();
|
|
|
+ for (UserDTO info : userList) {
|
|
|
+ if("潘中".equals(info.getName())){
|
|
|
+ info.setAccountantUserFlag(0);
|
|
|
+ }else{
|
|
|
+ info.setAccountantUserFlag(1);
|
|
|
+ }
|
|
|
+ Integer accountantUserCount = userService.getAccountantUserCount(info.getId());
|
|
|
+ info.setAccountantUserCount(accountantUserCount);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ return ResponseEntity.ok ( result );
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
|
|
|
|
|
|
|