|  | @@ -77,6 +77,16 @@ public class ExamOrganizationRelationController extends BaseController {
 | 
											
												
													
														|  |      @ApiOperation("获取未关联到考级项目的合作单位")
 |  |      @ApiOperation("获取未关联到考级项目的合作单位")
 | 
											
												
													
														|  |      @GetMapping(value = "/queryUnRelatedOrgans")
 |  |      @GetMapping(value = "/queryUnRelatedOrgans")
 | 
											
												
													
														|  |      public HttpResponseResult<PageInfo<Organization>> queryUnRelatedOrgans(ExamOrganizationRelationQueryInfo queryInfo){
 |  |      public HttpResponseResult<PageInfo<Organization>> queryUnRelatedOrgans(ExamOrganizationRelationQueryInfo queryInfo){
 | 
											
												
													
														|  | 
 |  | +        SysUser sysUser = sysUserFeignService.queryUserInfo();
 | 
											
												
													
														|  | 
 |  | +        if(Objects.isNull(sysUser)){
 | 
											
												
													
														|  | 
 |  | +            return failed("请重新登录");
 | 
											
												
													
														|  | 
 |  | +        }
 | 
											
												
													
														|  | 
 |  | +        if(!sysUser.getIsSuperAdmin()&&Objects.isNull(queryInfo.getOrganId())){
 | 
											
												
													
														|  | 
 |  | +            Employee employee = employeeService.get(sysUser.getId());
 | 
											
												
													
														|  | 
 |  | +            if(Objects.nonNull(employee)){
 | 
											
												
													
														|  | 
 |  | +                queryInfo.setOrganId(employee.getOrganId());
 | 
											
												
													
														|  | 
 |  | +            }
 | 
											
												
													
														|  | 
 |  | +        }
 | 
											
												
													
														|  |          return succeed(examOrganizationRelationService.queryUnRelatedOrgans(queryInfo));
 |  |          return succeed(examOrganizationRelationService.queryUnRelatedOrgans(queryInfo));
 | 
											
												
													
														|  |      }
 |  |      }
 | 
											
												
													
														|  |  
 |  |  
 |