|
|
|
@ -108,9 +108,8 @@ public class HIP1009InspectionReportUpdatesHandler implements WebserviceReceiveS
|
|
|
|
|
Node eafNoNode = inspectionInsertXmlUtil.getNode("/POOR_HIP1009/controlActProcess/subject/recordTarget/patientRole/id[@root='2.16.156.10011.1.24']/@extension");
|
|
|
|
|
String requestSn = eafNoNode.getNodeValue();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Node fileTitleNode = inspectionInsertXmlUtil.getNode("/POOR_HIP1009/controlActProcess/subject/component/structuredBody/component[@displayName='检查报告']/section/entry[@displayName='检查报告类型']/observation/code/@displayName");
|
|
|
|
|
String reportName = fileTitleNode.getNodeValue();
|
|
|
|
|
Node fileTitleNode = inspectionInsertXmlUtil.getNode("/POOR_HIP1009/controlActProcess/subject/component/structuredBody/component[@displayName='检查结果明细']/section/entry[@displayName='检查项目']/organizer/component[@displayName='检查项目']/observation/value");
|
|
|
|
|
String reportName = fileTitleNode.getTextContent();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ReportDto reportDto = new ReportDto();
|
|
|
|
@ -169,8 +168,9 @@ public class HIP1009InspectionReportUpdatesHandler implements WebserviceReceiveS
|
|
|
|
|
// Node sysFlagNode = inspectionUpdateXmlUtil.getNode("/POOR_HIP1009/controlActProcess/subject/component/structuredBody/component[@displayName='检查报告']/section/entry[@displayName='检查类型']/observation/code/@displayName");
|
|
|
|
|
// String sysFlag = sysFlagNode.getNodeValue();
|
|
|
|
|
|
|
|
|
|
Node fileTitleNode = inspectionUpdateXmlUtil.getNode("/POOR_HIP1009/controlActProcess/subject/component/structuredBody/component[@displayName='检查报告']/section/entry[@displayName='检查报告类型']/observation/code/@displayName");
|
|
|
|
|
String fileTitle = fileTitleNode.getNodeValue();
|
|
|
|
|
|
|
|
|
|
Node fileTitleNode = inspectionUpdateXmlUtil.getNode("/POOR_HIP1009/controlActProcess/subject/component/structuredBody/component[@displayName='检查结果明细']/section/entry[@displayName='检查项目']/organizer/component[@displayName='检查项目']/observation/value");
|
|
|
|
|
String fileTitle = fileTitleNode.getTextContent();
|
|
|
|
|
|
|
|
|
|
Node downUrlNode = inspectionUpdateXmlUtil.getNode("/POOR_HIP1009/controlActProcess/subject/component/structuredBody/component[@displayName='检查报告图像']/report/entry[@displayName='检查报告图像URL地址']/observation/value");
|
|
|
|
|
String downUrl = downUrlNode.getTextContent();
|
|
|
|
|