Commit 062a4aef authored by tianyiming's avatar tianyiming

监管单位过滤行政审批局

parent 06f75e63
...@@ -266,6 +266,9 @@ public class EquipmentCategoryServiceImpl extends BaseService<EquipmentCategoryD ...@@ -266,6 +266,9 @@ public class EquipmentCategoryServiceImpl extends BaseService<EquipmentCategoryD
if ("company".equals(e.get("level"))) { if ("company".equals(e.get("level"))) {
it.remove(); it.remove();
} }
if(e.get("companyName").toString().contains("行政审批局")){
it.remove();
}
if (!ObjectUtils.isEmpty(e.get("children"))) { if (!ObjectUtils.isEmpty(e.get("children"))) {
deleteRegulatorTreeData((List<LinkedHashMap>) e.get("children")); deleteRegulatorTreeData((List<LinkedHashMap>) e.get("children"));
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment