陈昶聿
5 天以前 5134e32688438abb53319c7269c5ce18944654e8
【景宁】查询随访任务组科室关联列表、查询随访任务组疾病关联列表
已修改1个文件
7 ■■■■■ 文件已修改
ruoyi-admin/src/main/java/com/ruoyi/web/controller/smartor/ServiceTaskscheduleController.java 7 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
ruoyi-admin/src/main/java/com/ruoyi/web/controller/smartor/ServiceTaskscheduleController.java
@@ -66,7 +66,8 @@
                SysDept sysDept = new SysDept();
                sysDept.setOrgid(schedule.getOrgid());
                sysDept.setDeptType("1");
                sysDept.setDeptCodes(Arrays.asList(split));
                sysDept.setDeptCodes(new ArrayList<>(Arrays.asList(split)));
                list = sysDeptService.selectDeptList(sysDept);
            }
@@ -75,7 +76,7 @@
                SysDept sysDept = new SysDept();
                sysDept.setOrgid(schedule.getOrgid());
                sysDept.setDeptType("2");
                sysDept.setDeptCodes(Arrays.asList(split));
                sysDept.setDeptCodes(new ArrayList<>(Arrays.asList(split)));
                list = sysDeptService.selectDeptList(sysDept);
            }
        }
@@ -97,7 +98,7 @@
            if(ObjectUtils.isNotEmpty(schedule) && StringUtils.isNotEmpty(schedule.getIcd10Codes())){
                Icd10 icd10 = new Icd10();
                String[] split = schedule.getIcd10Codes().split(",");
                icd10.setIcdcodes(Arrays.asList(split));
                icd10.setIcdcodes(new ArrayList<>(Arrays.asList(split)));
                icd10.setOrgid(schedule.getOrgid());
                list = icd10Service.selectIcd10List(icd10);
            }