|
|
|
@ -159,7 +159,7 @@ public class DepartmentBO {
|
|
|
|
|
return "";
|
|
|
|
|
}
|
|
|
|
|
String departmentPrincipal = MapperProxyFactory.getProxy(DepartmentMapper.class).getDepartmentPrincipal(id);
|
|
|
|
|
if (StringUtils.isBlank(departmentPrincipal)) {
|
|
|
|
|
if (StringUtils.isBlank(departmentPrincipal) || "$NULL$".equalsIgnoreCase(departmentPrincipal)) {
|
|
|
|
|
return "";
|
|
|
|
|
}
|
|
|
|
|
List<Long> collect = Arrays.stream(departmentPrincipal.split(",")).map(Long::parseLong).collect(Collectors.toList());
|
|
|
|
|