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