获取能力申请详情可过滤只出某个资源所属部门
This commit is contained in:
parent
1998f17c2e
commit
8ff33d570e
|
@ -286,7 +286,7 @@ public class TAbilityApplicationController {
|
|||
@GetMapping("getByApplyFlag/{applyFlag}")
|
||||
@ApiOperation("根据申请标识获取能力申请信息")
|
||||
@LogOperation("根据申请标识获取能力申请信息")
|
||||
public Result<TAbilityApplicationV2DTO> getByApplyFlag(@PathVariable("applyFlag") String applyFlag) {
|
||||
public Result<TAbilityApplicationV2DTO> getByApplyFlag(@PathVariable("applyFlag") String applyFlag, @RequestParam Map<String, Object> requestParams) {
|
||||
final UserDetail user = SecurityUser.getUser();
|
||||
Map<String, Object> params = new HashMap<String, Object>() {
|
||||
{
|
||||
|
@ -309,6 +309,14 @@ public class TAbilityApplicationController {
|
|||
return sysDeptDTO.getName();
|
||||
}
|
||||
}));
|
||||
|
||||
if (requestParams.containsKey("resourceDeptName") && StringUtils.isNotEmpty(requestParams.get("resourceDeptName").toString())) { // 限制只出该资源所属部门的申请情况
|
||||
Map<String, List<TAbilityApplicationDTO>> finalResult = result;
|
||||
result = new HashMap<String, List<TAbilityApplicationDTO>>() {{
|
||||
put(requestParams.get("resourceDeptName").toString(), finalResult.get(requestParams.get("resourceDeptName").toString()));
|
||||
}};
|
||||
}
|
||||
|
||||
if (applicationDTOS.isEmpty()) {
|
||||
return new Result<TAbilityApplicationV2DTO>().ok(null);
|
||||
}
|
||||
|
@ -322,8 +330,9 @@ public class TAbilityApplicationController {
|
|||
}
|
||||
}
|
||||
});
|
||||
Map<String, List<TAbilityApplicationDTO>> finalResult1 = result;
|
||||
Map<String, List<Map<String, Object>>> re = result.keySet().stream().map(index -> {
|
||||
final List<TAbilityApplicationDTO> tAbilityApplicationDTOList = result.get(index);
|
||||
final List<TAbilityApplicationDTO> tAbilityApplicationDTOList = finalResult1.get(index);
|
||||
if (tAbilityApplicationDTOList.isEmpty()) {
|
||||
return null;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue