|
@@ -61,6 +61,7 @@ public class CommonFacade {
|
|
|
}
|
|
|
wordCrfDTO.setAge(searchData.getAge());
|
|
|
wordCrfDTO.setSex(searchData.getSex());
|
|
|
+ wordCrfDTO.setDept(searchData.getDept());
|
|
|
if (searchData.getDiseaseName() != null && StringUtils.isNotBlank(searchData.getDiseaseName().getName())) {
|
|
|
wordCrfDTO.setDiseaseName(searchData.getDiseaseName());
|
|
|
}
|
|
@@ -296,6 +297,11 @@ public class CommonFacade {
|
|
|
pushVO.setSex(wordCrfDTO.getSex());
|
|
|
pushVO.setAgeNum(wordCrfDTO.getAgeNum());
|
|
|
pushVO.setDiaeaseName(diseaseName);
|
|
|
+ List<Item> depts = wordCrfDTO.getDept();
|
|
|
+ if(ListUtil.isNotEmpty(depts)){
|
|
|
+ List<String> collect = depts.stream().map(x -> x.getUniqueName()).collect(Collectors.toList());
|
|
|
+ pushVO.setDept(collect);
|
|
|
+ }
|
|
|
if (chiefLabel != null) {
|
|
|
ChiefPushVo chiefPushVo = new ChiefPushVo();
|
|
|
if (ListUtil.isNotEmpty(chiefLabel.getClinicals())) {
|