|
@@ -1083,7 +1083,7 @@ public class PersonInfoController {
|
|
|
CompanyInfo parent = companyInfoService.get(parentId);
|
|
|
String companyCode = parent!=null ? parent.getCode() : "";
|
|
|
|
|
|
- if (StringUtils.isEmpty(companyCode)) {
|
|
|
+ if (StringUtils.isNotEmpty(companyCode)) {
|
|
|
if (subordinate) {
|
|
|
searchParams.put("companyCode", companyCode + "%");
|
|
|
} else {
|