...
|
...
|
@@ -86,7 +86,7 @@ func (orgsService *OrgsService) OrgList(orgListQuery *query.OrgListQuery) (inter |
|
|
CompanyId: int(orgListQuery.Operator.CompanyId),
|
|
|
DepName: orgListQuery.DepName,
|
|
|
IsOrg: 0,
|
|
|
Limit: 0,
|
|
|
Limit: 1000,
|
|
|
Offset: 0,
|
|
|
OrgCode: orgListQuery.OrgCode,
|
|
|
ParentId: parentOrgId,
|
...
|
...
|
@@ -162,6 +162,7 @@ func (orgsService OrgsService) DepartmentsUsers(departmentsUsersQuery *query.Dep |
|
|
users, err := creationUserGateway.UserSearch(allied_creation_user.ReqUserSearch{
|
|
|
CompanyId: departmentsUsersQuery.Operator.CompanyId,
|
|
|
OrganizationId: departmentsUsersQuery.Operator.OrgId,
|
|
|
Limit: 100,
|
|
|
})
|
|
|
if err != nil {
|
|
|
return nil, application.ThrowError(application.BUSINESS_ERROR, err.Error())
|
...
|
...
|
|