调整问题

This commit is contained in:
wenc000 2020-11-10 13:47:30 +08:00
parent 7b4cad2d58
commit 8d01683ba0

View File

@ -36,6 +36,7 @@ public class DepartmentServiceImpl extends AbstractService implements IDepartmen
@Override @Override
public JSONArray listDepartments(Map<String, Object> params) throws AccessTokenException, SearchException { public JSONArray listDepartments(Map<String, Object> params) throws AccessTokenException, SearchException {
params.put(IApiConsts.ACCESS_TOKEN, ClientTokenManager.getInstance().getClientToken().getAccessToken());
String result = restTemplateUtil.doPostForm(String.format(IApiConsts.LIST_DEPARTMENT, apiPathProperties.getUserCenter(), params.get("parentId").toString()), params); String result = restTemplateUtil.doPostForm(String.format(IApiConsts.LIST_DEPARTMENT, apiPathProperties.getUserCenter(), params.get("parentId").toString()), params);
if (result == null) { if (result == null) {
throw new AccessTokenException("认证失败"); throw new AccessTokenException("认证失败");
@ -48,7 +49,9 @@ public class DepartmentServiceImpl extends AbstractService implements IDepartmen
@Override @Override
public JSONArray listDepartmentsAllByParentId(String parentId) throws AccessTokenException, SearchException { public JSONArray listDepartmentsAllByParentId(String parentId) throws AccessTokenException, SearchException {
String result = restTemplateUtil.doPostForm(String.format(IApiConsts.LIST_ALL_DEPARTMENT, apiPathProperties.getUserCenter(), parentId), new HashMap<>(0)); Map<String, Object> params = getHashMap(2);
params.put(IApiConsts.ACCESS_TOKEN, ClientTokenManager.getInstance().getClientToken().getAccessToken());
String result = restTemplateUtil.doPostForm(String.format(IApiConsts.LIST_ALL_DEPARTMENT, apiPathProperties.getUserCenter(), parentId), params);
if (result == null) { if (result == null) {
throw new AccessTokenException("认证失败"); throw new AccessTokenException("认证失败");
} }
@ -60,7 +63,7 @@ public class DepartmentServiceImpl extends AbstractService implements IDepartmen
@Override @Override
public JSONArray listZTreeDepartmentWithUser(String departmentParentId) throws AccessTokenException, SearchException { public JSONArray listZTreeDepartmentWithUser(String departmentParentId) throws AccessTokenException, SearchException {
Map<String, Object> params = new HashMap<>(1); Map<String, Object> params = new HashMap<>(2);
params.put(IApiConsts.ACCESS_TOKEN, ClientTokenManager.getInstance().getClientToken().getAccessToken()); params.put(IApiConsts.ACCESS_TOKEN, ClientTokenManager.getInstance().getClientToken().getAccessToken());
params.put("id", departmentParentId); params.put("id", departmentParentId);
String result = restTemplateUtil.doGetFormNormal(String.format(IApiConsts.LIST_ZTREE_DEPARTMENT_WITH_USER, apiPathProperties.getUserCenter()), params); String result = restTemplateUtil.doGetFormNormal(String.format(IApiConsts.LIST_ZTREE_DEPARTMENT_WITH_USER, apiPathProperties.getUserCenter()), params);