|
@@ -729,7 +729,11 @@ public class FeeRuleSchemeServiceImpl implements FeeRuleSchemeService {
|
|
|
String comlevel = "";
|
|
String comlevel = "";
|
|
|
do{//循环操作
|
|
do{//循环操作
|
|
|
SysDept sysDeptTemp = sysDeptService.getById(parentId);
|
|
SysDept sysDeptTemp = sysDeptService.getById(parentId);
|
|
|
- parentId = sysDeptTemp.getParentId();
|
|
|
|
|
|
|
+ if(StringUtils.isNotEmpty(sysDeptTemp.getParentId())){
|
|
|
|
|
+ parentId = sysDeptTemp.getParentId();
|
|
|
|
|
+ }else{
|
|
|
|
|
+ break;
|
|
|
|
|
+ }
|
|
|
if(StringUtils.isEmpty(sysDeptTemp.getComlevel())){
|
|
if(StringUtils.isEmpty(sysDeptTemp.getComlevel())){
|
|
|
continue;
|
|
continue;
|
|
|
}else {
|
|
}else {
|