|
@@ -210,7 +210,7 @@ public class InquiryInfoController {
|
|
|
getDiseaseNameVO.setHospitalCode(nlpRemote.getHospitalCode());
|
|
|
List<GetDiseaseNameDTO> a = diseaseIcdFacade.getDiseaseNames(getDiseaseNameVO);
|
|
|
if(a.size()!=0){
|
|
|
- for(DiseaseIcd di : a){
|
|
|
+ for(GetDiseaseNameDTO di : a){
|
|
|
dn.append(di.getConceptDisName()+ ",") ;
|
|
|
}
|
|
|
dn1 = dn.substring(0, dn.length() - 1);
|
|
@@ -326,6 +326,13 @@ public class InquiryInfoController {
|
|
|
List<PacsConfigDTO> b = pacsConfigFacade.getPacsConfigByNameAndHosCode(lisPacsInfoForDJVO);
|
|
|
url = "http://127.0.0.1:5446/information.html?type=" + lisPacsInfoForDJVO.getType() +
|
|
|
"&position=2" + "&name=" + b.get(0).getUniqueName();
|
|
|
+ }else if (lisPacsInfoForDJVO.getType() == 7){
|
|
|
+ GetDiseaseNameVO getDiseaseNameVO =new GetDiseaseNameVO();
|
|
|
+ getDiseaseNameVO.setHospitalCode(lisPacsInfoForDJVO.getHosCode());
|
|
|
+ getDiseaseNameVO.setHisDiseaseName(lisPacsInfoForDJVO.getDiseaseName());
|
|
|
+ List<GetDiseaseNameDTO> c = diseaseIcdFacade.getDiseaseNames(getDiseaseNameVO);
|
|
|
+ url = "http://127.0.0.1:5446/information.html?type=" + lisPacsInfoForDJVO.getType() +
|
|
|
+ "&position=2" + "&name=" + c.get(0).getConceptDisName();
|
|
|
}
|
|
|
return url;
|
|
|
}
|