使用MDHT从CCD读取问题部分

时间:2014-04-25 10:15:51

标签: hl7 ccd hl7-cda c-cda mdht

我正在尝试使用MDHT解析CCD中的问题部分。我试图解析的XML代码是:

<entry>
    <act classCode="ACT" moodCode="EVN">
        <templateId root="2.16.840.1.113883.10.20.22.4.3" />
        <id root="2.16.840.1.113883.3.441" extension="85cec11c26ff475fac469cc9fa7a040c" />
        <code code="CONC" codeSystem="2.16.840.1.113883.5.6" />
        <statusCode code="active" />
        <effectiveTime nullFlavor="UNK">
            <low value="20110925000000" />
            <high nullFlavor="UNK" />
        </effectiveTime>
        <entryRelationship typeCode="SUBJ" inversionInd="false">
            <observation classCode="OBS" moodCode="EVN" negationInd="false">
                <templateId root="2.16.840.1.113883.10.20.22.4.4" />
                <id root="2.16.840.1.113883.3.441.1.50.300011.51.26604.61" extension="1348" />
                <code nullFlavor="NA" />
                <text>Asthma<reference value="#ref_d910f32f622b4615970569407d739ca6_problem_name_1" />
                </text>
                <statusCode code="completed" />
                <effectiveTime nullFlavor="UNK">
                    <low value="20110925000000" />
                    <high nullFlavor="UNK" />
                </effectiveTime>
                <value xsi:type="CD" nullFlavor="UNK">
                    <translation code="195967001" displayName="Asthma" codeSystem="2.16.840.1.113883.6.96" codeSystemName="SNOMED CT">
                        <originalText>
                            <reference value="#ref_d910f32f622b4615970569407d739ca6_problem_name_1" />
                        </originalText>
                    </translation>
                </value>

我想阅读翻译标签(displayName =&#34; Asthma&#34;)。我想阅读哮喘,它的代码值和代码系统。

但是在MDHT中,我无法在价值标签内获得翻译标签。我这样做了:

entry.getAct().getEntryRelationships().get(0).getObservation().getValues().get(0) //no translation tag.

1 个答案:

答案 0 :(得分:3)

使用MDHT与其他JAVA / XML代的优势之一是我们生成特定于域的类,以帮助您更有效地导航文档

您应该避免使用特定的get()和泛型getObservation,因为基础CDA标准限制了所需的内容,但生产者能够在文档中放置任何类型的观察等。这是一个用于解决问题部分的示例代码段

观察类本身以及问题观察值是ANY的集合,需要适当地转换为CD类型,而CD类型又具有您正在寻找的翻译属性。

HTH 肖恩

ProblemSection ps = ...
        for (ProblemConcernAct cpc : ps.getConsolProblemConcerns()) {
            for (ProblemObservation pos : cpc.getProblemObservations()) {
                for (ANY any : pos.getValues()) {
                    if (any instanceof CD) {
                        CD code = (CD) any;
                        for (CD translationCode : code.getTranslations()) {
                            System.out.println(translationCode.getCode());
                        }

                    }
                }
            }
        }