|
|
@@ -10,6 +10,7 @@ import com.x.base.core.project.tools.ListTools;
|
|
|
import com.x.organization.assemble.express.Business;
|
|
|
import com.x.organization.assemble.express.CacheFactory;
|
|
|
import com.x.organization.core.entity.Group;
|
|
|
+import com.x.organization.core.entity.Identity;
|
|
|
import com.x.organization.core.entity.Person;
|
|
|
import com.x.organization.core.entity.Unit;
|
|
|
|
|
|
@@ -60,6 +61,12 @@ class BaseAction extends StandardJaxrsAction {
|
|
|
t.getUnitList().add(o.getDistinguishedName());
|
|
|
}
|
|
|
}
|
|
|
+ if (ListTools.isNotEmpty(group.getIdentityList())) {
|
|
|
+ for (String str : group.getIdentityList()) {
|
|
|
+ Identity o = business.identity().pick(str);
|
|
|
+ t.getIdentityList().add(o.getDistinguishedName());
|
|
|
+ }
|
|
|
+ }
|
|
|
return t;
|
|
|
}
|
|
|
|