Commit 9d0fb5a9 authored by xixinzhao's avatar xixinzhao

bug修改

parent cdf8c9f7
...@@ -942,12 +942,12 @@ public class CheckServiceImpl implements ICheckService { ...@@ -942,12 +942,12 @@ public class CheckServiceImpl implements ICheckService {
List<DepartmentBo> departmentBos = ModelToBo(departmentModels); List<DepartmentBo> departmentBos = ModelToBo(departmentModels);
for (DepartmentBo d : departmentBos) { for (DepartmentBo d : departmentBos) {
LinkedHashMap<String, Object> dept = new LinkedHashMap<>(); LinkedHashMap<String, Object> dept = new LinkedHashMap<>();
dept.put("id", d.getSequenceNbr()); dept.put("id", String.valueOf(d.getSequenceNbr()));
dept.put("key", d.getSequenceNbr()); dept.put("key", String.valueOf(d.getSequenceNbr()));
dept.put("value", d.getSequenceNbr()); dept.put("value", String.valueOf(d.getSequenceNbr()));
dept.put("state", "open"); dept.put("state", "open");
dept.put("type", "department"); dept.put("type", "department");
dept.put("orgCode", d.getSequenceNbr()); dept.put("orgCode", String.valueOf(d.getSequenceNbr()));
dept.put("label", d.getDepartmentName()); dept.put("label", d.getDepartmentName());
dept.put("title", d.getDepartmentName()); dept.put("title", d.getDepartmentName());
dept.put("name", d.getDepartmentName()); dept.put("name", d.getDepartmentName());
......
...@@ -147,7 +147,7 @@ public class CheckPageParamUtil { ...@@ -147,7 +147,7 @@ public class CheckPageParamUtil {
paramMap.setCheckType(toString(queryRequests.get(i).getValue())); paramMap.setCheckType(toString(queryRequests.get(i).getValue()));
} else if ("checkStatus".equals(name)) { } else if ("checkStatus".equals(name)) {
paramMap.setCheckStatus(toString(queryRequests.get(i).getValue())); paramMap.setCheckStatus(toString(queryRequests.get(i).getValue()));
} else if ("groupId".equals(name)) { } else if ("deptId".equals(name)) {
paramMap.setGroupId(toString(queryRequests.get(i).getValue())); paramMap.setGroupId(toString(queryRequests.get(i).getValue()));
} else if ("userId".equals(name)) { } else if ("userId".equals(name)) {
paramMap.setUserId(toString(queryRequests.get(i).getValue())); paramMap.setUserId(toString(queryRequests.get(i).getValue()));
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment