信用修复待办加上受理机关列

This commit is contained in:
zhouxy 2026-01-22 19:51:29 +08:00
parent 482ed6efcf
commit 6d18b8567c
1 changed files with 8 additions and 3 deletions

View File

@ -240,6 +240,9 @@ public class TaskController extends BaseController {
}
}
Map<String, String> map = new HashMap<>();
map.put("deleted", "0");
map.put("unittype", "1");
// 信用修复
if (customParamMap != null && customParamMap.get("type") != null && "repair".equals(customParamMap.get("type"))) {
//处理年报申请过来的信用修复待办
@ -263,10 +266,7 @@ public class TaskController extends BaseController {
if (isChildUnit) { //查下级待办
customParamMap.put("checkChildUnit","1");
//这一步进行判断,且允许上级办理下级的信用修复
Map<String, String> map = new HashMap<>();
map.put("orgNumber", aicUser.getRegionID());
map.put("deleted", "0");
map.put("unittype", "1");
OrgUnits org = aicorgService.queryByOrgNumberMap(map);
Integer orgLevel = org.getOrgLevel();
//根据机构等级判断
@ -318,6 +318,11 @@ public class TaskController extends BaseController {
}
taskListUnionDto.setDeadlineDay(days);
}
//补充受理机关中文(信用修复)
map.put("orgNumber", taskListUnionDto.getAreaCode());
OrgUnits org = aicorgService.queryByOrgNumberMap(map);
taskListUnionDto.setAreaCode(org==null?"":org.getOrgUnitName());
}
return page;
}