...
This commit is contained in:
parent
9b61af88ff
commit
aa225e9255
|
@ -142,16 +142,19 @@ public class SysDeptController {
|
|||
}
|
||||
List<Map<String, Object>> list_metting = jdbcTemplate.queryForList("SELECT DISTINCT dept from t_meetingroom_book WHERE dept IS NOT NULL;");
|
||||
List<String> temp = list.stream().map(index -> index.get("name")).filter(index -> index != null).map(index -> index.toString()).distinct().collect(Collectors.toList());
|
||||
List<String> finalTemp = temp;
|
||||
List<Map<String, Object>> list_ = list_metting.stream().map(index -> index.get("dept")).filter(index -> index != null).collect(Collectors.toList())
|
||||
.stream().filter(index -> !temp.contains(index.toString())).map(index -> new HashMap<String, Object>() {{
|
||||
.stream().filter(index -> !finalTemp.contains(index.toString())).map(index -> new HashMap<String, Object>() {{
|
||||
put("id", null);
|
||||
put("name", index.toString());
|
||||
}}).collect(Collectors.toList());
|
||||
list.addAll(list_); // 获取会客厅申请部门
|
||||
if (cloud) {
|
||||
temp = list.stream().map(index -> index.get("name")).filter(index -> index != null).map(index -> index.toString()).distinct().collect(Collectors.toList());
|
||||
List<Map<String, Object>> list_zwy = lcJdbcTemplate.queryForList(getAllsql);
|
||||
List<String> finalTemp1 = temp;
|
||||
List<Map<String, Object>> list_1 = list_zwy.stream().map(index -> index.get("deptName")).filter(index -> index != null).distinct().collect(Collectors.toList())
|
||||
.stream().filter(index -> !temp.contains(index.toString())).map(index -> new HashMap<String, Object>() {{
|
||||
.stream().filter(index -> !finalTemp1.contains(index.toString())).map(index -> new HashMap<String, Object>() {{
|
||||
put("id", null);
|
||||
put("name", index.toString());
|
||||
}}).collect(Collectors.toList());
|
||||
|
|
Loading…
Reference in New Issue