|
|
|
@ -4436,7 +4436,7 @@ public class ItemServiceImpl extends BaseServiceImpl<ItemDao, ItemEntity> implem |
|
|
|
throw new RenException("获取部门信息失败,部门ID:" + deptId); |
|
|
|
} |
|
|
|
//当前处理层级应该是街道
|
|
|
|
if ("street_party".equals(dept.getData().getTypeKey())) { |
|
|
|
if (!"street_party".equals(dept.getData().getTypeKey())) { |
|
|
|
throw new RenException("当前处理层级不是街道级"); |
|
|
|
} |
|
|
|
ItemHandleProcessEntity handleProcessEntity = new ItemHandleProcessEntity(); |
|
|
|
@ -4498,7 +4498,7 @@ public class ItemServiceImpl extends BaseServiceImpl<ItemDao, ItemEntity> implem |
|
|
|
throw new RenException("获取部门信息失败,部门ID:" + deptId); |
|
|
|
} |
|
|
|
//当前处理层级应该是区
|
|
|
|
if ("district_party".equals(dept.getData().getTypeKey())) { |
|
|
|
if (!"district_party".equals(dept.getData().getTypeKey())) { |
|
|
|
throw new RenException("当前处理层级不是区级"); |
|
|
|
} |
|
|
|
|
|
|
|
|