cqm-reports 2.1.1 → 3.0.0.pre.alpha.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +5 -5
- data/Gemfile +1 -2
- data/README.md +0 -27
- data/lib/{cqm_report.rb → cqm-reports.rb} +4 -2
- data/lib/ext/code.rb +11 -0
- data/lib/ext/data_element.rb +24 -0
- data/lib/html-export/qdm-patient/qdm_patient.rb +3 -3
- data/lib/qrda-export/catI-r5/_header.mustache +2 -2
- data/lib/qrda-export/catI-r5/qrda1_r5.mustache +2 -6
- data/lib/qrda-export/catI-r5/qrda1_r5.rb +2 -28
- data/lib/qrda-export/catI-r5/qrda_header/_record_target.mustache +11 -24
- data/lib/qrda-export/catI-r5/qrda_templates/adverse_event.mustache +4 -4
- data/lib/qrda-export/catI-r5/qrda_templates/allergy_intolerance.mustache +6 -1
- data/lib/qrda-export/catI-r5/qrda_templates/communication_performed.mustache +2 -2
- data/lib/qrda-export/catI-r5/qrda_templates/diagnosis.mustache +6 -1
- data/lib/qrda-export/catI-r5/qrda_templates/encounter_performed.mustache +0 -4
- data/lib/qrda-export/catI-r5/qrda_templates/immunization_administered.mustache +2 -7
- data/lib/qrda-export/catI-r5/qrda_templates/medication_discharge.mustache +2 -0
- data/lib/qrda-export/catI-r5/qrda_templates/procedure_order.mustache +0 -4
- data/lib/qrda-export/catI-r5/qrda_templates/procedure_performed.mustache +0 -4
- data/lib/qrda-export/catI-r5/qrda_templates/procedure_recommended.mustache +0 -4
- data/lib/qrda-export/catI-r5/qrda_templates/substance_recommended.mustache +0 -1
- data/lib/qrda-export/catI-r5/qrda_templates/symptom.mustache +6 -1
- data/lib/qrda-export/catI-r5/qrda_templates/template_partials/_encounter_diagnosis.mustache +3 -1
- data/lib/qrda-export/catI-r5/qrda_templates/template_partials/_medication_supply_request.mustache +1 -1
- data/lib/qrda-export/catI-r5/qrda_templates/template_partials/_results.mustache +12 -0
- data/lib/qrda-export/helper/cat1_view_helper.rb +4 -6
- data/lib/qrda-export/helper/date_helper.rb +4 -0
- data/lib/qrda-import/base-importers/demographics_importer.rb +4 -4
- data/lib/qrda-import/base-importers/section_importer.rb +14 -58
- data/lib/qrda-import/data-element-importers/adverse_event_importer.rb +1 -1
- data/lib/qrda-import/data-element-importers/communication_performed_importer.rb +4 -4
- data/lib/qrda-import/data-element-importers/diagnostic_study_performed_importer.rb +1 -1
- data/lib/qrda-import/data-element-importers/encounter_performed_importer.rb +0 -12
- data/lib/qrda-import/data-element-importers/immunization_order_importer.rb +1 -1
- data/lib/qrda-import/data-element-importers/medication_dispensed_importer.rb +2 -2
- data/lib/qrda-import/data-element-importers/medication_order_importer.rb +1 -1
- data/lib/qrda-import/data-element-importers/procedure_order_importer.rb +0 -2
- data/lib/qrda-import/data-element-importers/procedure_performed_importer.rb +0 -2
- data/lib/qrda-import/data-element-importers/procedure_recommended_importer.rb +0 -2
- data/lib/qrda-import/entry_package.rb +16 -0
- data/lib/qrda-import/patient_importer.rb +62 -85
- metadata +15 -29
- data/lib/qrda-export/catI-r5/qrda_templates/provider_characteristic.mustache +0 -15
- data/lib/qrda-import/data-element-importers/provider_characteristic_importer.rb +0 -19
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
|
-
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
2
|
+
SHA256:
|
|
3
|
+
metadata.gz: 61e09a4750ca628e10f1e92fe0d37c28058ab629b59fcbc520ef167d369296a3
|
|
4
|
+
data.tar.gz: 1035c18714e2ca53bdd527e91ebac55b96e5737cba137c105c8a1b2577418d3d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e1566656c60a1836df5e4846b6b07669ddddfb81c0aeee0bc0302790bc70abb0fea8711d6722e87f5ca02174ed535ffe7a04a7b4709c1800c5e03a37a07d7e7a
|
|
7
|
+
data.tar.gz: 3fb48e9b465962a7a7130a49879bb9b812bf59fb2ff94af064af571da1b3c92775861d262cd8dbbf66168e0020ad998de34389e4dcba9d1fed4b66e9753a99da
|
data/Gemfile
CHANGED
|
@@ -4,8 +4,6 @@ gemspec :development_group => :test
|
|
|
4
4
|
|
|
5
5
|
gem 'mongoid', '~> 6.4.2'
|
|
6
6
|
|
|
7
|
-
# gem 'cqm-models', git: 'https://github.com/projecttacoma/cqm-models.git', branch: 'master'
|
|
8
|
-
|
|
9
7
|
gem 'protected_attributes_continued'
|
|
10
8
|
|
|
11
9
|
group :development, :test do
|
|
@@ -28,5 +26,6 @@ group :test do
|
|
|
28
26
|
gem 'minitest', '~> 5.3'
|
|
29
27
|
gem 'minitest-reporters'
|
|
30
28
|
gem 'awesome_print', :require => 'ap'
|
|
29
|
+
gem 'cqm-validators'
|
|
31
30
|
gem 'nokogiri-diff'
|
|
32
31
|
end
|
data/README.md
CHANGED
|
@@ -18,33 +18,6 @@ Starting with version **2.0.0** released on 6/20/2019, cqm-reports versioning ha
|
|
|
18
18
|
|
|
19
19
|
For the versions available, see [tags on this repository](https://github.com/projecttacoma/cqm-validators/tags).
|
|
20
20
|
|
|
21
|
-
=======
|
|
22
|
-
Importing QRDA
|
|
23
|
-
==========
|
|
24
|
-
|
|
25
|
-
A QRDA document can be imported into a CQM::Patient (defined in [cqm-models](https://github.com/projecttacoma/cqm-models)) using the following commands.
|
|
26
|
-
|
|
27
|
-
doc = Nokogiri::XML(file)
|
|
28
|
-
patient, warnings = QRDA::Cat1::PatientImporter.instance.parse_cat1(doc)
|
|
29
|
-
|
|
30
|
-
Exporting QRDA Category I
|
|
31
|
-
==========
|
|
32
|
-
|
|
33
|
-
Exporting a QRDA document from a CQM::Patient (defined in [cqm-models](https://github.com/projecttacoma/cqm-models)) using the following command.
|
|
34
|
-
|
|
35
|
-
Qrda1R5.new(patient, measures, options).render
|
|
36
|
-
* patient is a [CQM::Patient](https://github.com/projecttacoma/cqm-models/blob/master/app/models/cqm/patient.rb)
|
|
37
|
-
* measures is an array of [CQM::Measure](https://github.com/projecttacoma/cqm-models/blob/master/app/models/cqm/measure.rb)
|
|
38
|
-
* options is a hash that can be used to pass in:
|
|
39
|
-
* provider
|
|
40
|
-
* patient_addresses
|
|
41
|
-
* patient_telecoms
|
|
42
|
-
* start_time
|
|
43
|
-
* end_time
|
|
44
|
-
* submission_program
|
|
45
|
-
|
|
46
|
-
QRDA export requires the [mustache](https://github.com/mustache/mustache) gem
|
|
47
|
-
|
|
48
21
|
## License
|
|
49
22
|
|
|
50
23
|
Copyright 2019 The MITRE Corporation
|
|
@@ -18,6 +18,7 @@ require_relative 'html-export/qdm-patient/qdm_patient.rb'
|
|
|
18
18
|
require_relative 'qrda-export/catI-r5/qrda1_r5.rb'
|
|
19
19
|
require_relative 'qrda-export/catIII-r2-1/qrda3_r21.rb'
|
|
20
20
|
|
|
21
|
+
require_relative 'qrda-import/entry_package.rb'
|
|
21
22
|
require_relative 'qrda-import/cda_identifier.rb'
|
|
22
23
|
require_relative 'qrda-import/narrative_reference_handler.rb'
|
|
23
24
|
require_relative 'qrda-import/entry_finder.rb'
|
|
@@ -66,9 +67,10 @@ require_relative 'qrda-import/data-element-importers/procedure_order_importer.rb
|
|
|
66
67
|
require_relative 'qrda-import/data-element-importers/procedure_performed_importer.rb'
|
|
67
68
|
require_relative 'qrda-import/data-element-importers/procedure_recommended_importer.rb'
|
|
68
69
|
require_relative 'qrda-import/data-element-importers/provider_care_experience_importer.rb'
|
|
69
|
-
require_relative 'qrda-import/data-element-importers/provider_characteristic_importer.rb'
|
|
70
70
|
require_relative 'qrda-import/data-element-importers/substance_administered_importer.rb'
|
|
71
71
|
require_relative 'qrda-import/data-element-importers/substance_order_importer.rb'
|
|
72
72
|
require_relative 'qrda-import/data-element-importers/substance_recommended_importer.rb'
|
|
73
73
|
require_relative 'qrda-import/data-element-importers/symptom_importer.rb'
|
|
74
|
-
require_relative 'qrda-import/patient_importer.rb'
|
|
74
|
+
require_relative 'qrda-import/patient_importer.rb'
|
|
75
|
+
require_relative 'ext/data_element.rb'
|
|
76
|
+
require_relative 'ext/code.rb'
|
data/lib/ext/code.rb
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
module QDM
|
|
2
|
+
class DataElement
|
|
3
|
+
def merge!(other)
|
|
4
|
+
# ensure they're the same category (e.g. 'encounter')
|
|
5
|
+
return unless qdmCategory == other.qdmCategory
|
|
6
|
+
|
|
7
|
+
# ensure they're the same status (e.g. 'performed'), and that they both have a status set (or that they both don't)
|
|
8
|
+
return if respond_to?(:qdmStatus) && !other.respond_to?(:qdmStatus)
|
|
9
|
+
return if !respond_to?(:qdmStatus) && other.respond_to?(:qdmStatus)
|
|
10
|
+
return if respond_to?(:qdmStatus) && other.respond_to?(:qdmStatus) && qdmStatus != other.qdmStatus
|
|
11
|
+
|
|
12
|
+
# iterate over non-code fields
|
|
13
|
+
fields.each_key do |field|
|
|
14
|
+
next if field[0] == '_' || %w[dataElementCodes qdmCategory qdmVersion qdmStatus].include?(field)
|
|
15
|
+
|
|
16
|
+
if send(field).nil?
|
|
17
|
+
send(field + '=', other.send(field))
|
|
18
|
+
end
|
|
19
|
+
end
|
|
20
|
+
|
|
21
|
+
self.dataElementCodes = dataElementCodes.concat(other.dataElementCodes).uniq
|
|
22
|
+
end
|
|
23
|
+
end
|
|
24
|
+
end
|
|
@@ -17,7 +17,7 @@ class QdmPatient < Mustache
|
|
|
17
17
|
def data_elements
|
|
18
18
|
de_hash = {}
|
|
19
19
|
@qdmPatient.dataElements.each do |data_element|
|
|
20
|
-
de_hash[data_element._type] ? de_hash[data_element._type]
|
|
20
|
+
de_hash[data_element._type] ? de_hash[data_element._type][:element_list] << data_element : de_hash[data_element._type] = { title: data_element._type, element_list: [data_element] }
|
|
21
21
|
end
|
|
22
22
|
JSON.parse(de_hash.values.to_json)
|
|
23
23
|
end
|
|
@@ -27,11 +27,11 @@ class QdmPatient < Mustache
|
|
|
27
27
|
end
|
|
28
28
|
|
|
29
29
|
def code_code_system_string
|
|
30
|
-
"#{self['code']} (#{HQMF::Util::CodeSystemHelper.code_system_for(self['
|
|
30
|
+
"#{self['code']} (#{HQMF::Util::CodeSystemHelper.code_system_for(self['system'])})"
|
|
31
31
|
end
|
|
32
32
|
|
|
33
33
|
def code_system_name
|
|
34
|
-
HQMF::Util::CodeSystemHelper.code_system_for(self['
|
|
34
|
+
HQMF::Util::CodeSystemHelper.code_system_for(self['system'])
|
|
35
35
|
end
|
|
36
36
|
|
|
37
37
|
def result_string
|
|
@@ -6,9 +6,9 @@
|
|
|
6
6
|
<!-- QRDA templateId -->
|
|
7
7
|
<templateId root="2.16.840.1.113883.10.20.24.1.1" extension="2017-08-01"/>
|
|
8
8
|
<!-- QDM-based QRDA templateId -->
|
|
9
|
-
<templateId root="2.16.840.1.113883.10.20.24.1.2" extension="
|
|
9
|
+
<templateId root="2.16.840.1.113883.10.20.24.1.2" extension="2017-08-01"/>
|
|
10
10
|
<!-- CMS QRDA templateId -->
|
|
11
|
-
<templateId root="2.16.840.1.113883.10.20.24.1.3" extension="
|
|
11
|
+
<templateId root="2.16.840.1.113883.10.20.24.1.3" extension="2018-02-01"/>
|
|
12
12
|
<!-- This is the globally unique identifier for this QRDA document -->
|
|
13
13
|
<id root="{{random_id}}"/>
|
|
14
14
|
<!-- QRDA document type code -->
|
|
@@ -12,8 +12,8 @@
|
|
|
12
12
|
<!-- This is the templateId for Patient Data section -->
|
|
13
13
|
<templateId root="2.16.840.1.113883.10.20.17.2.4"/>
|
|
14
14
|
<!-- This is the templateId for Patient Data QDM section -->
|
|
15
|
-
<templateId extension="
|
|
16
|
-
<templateId extension="
|
|
15
|
+
<templateId extension="2017-08-01" root="2.16.840.1.113883.10.20.24.2.1"/>
|
|
16
|
+
<templateId extension="2018-02-01" root="2.16.840.1.113883.10.20.24.2.1.1"/>
|
|
17
17
|
<code code="55188-7" codeSystem="2.16.840.1.113883.6.1"/>
|
|
18
18
|
<title>Patient Data</title>
|
|
19
19
|
<text/>
|
|
@@ -178,10 +178,6 @@
|
|
|
178
178
|
{{> qrda_templates/provider_care_experience}}
|
|
179
179
|
{{/provider_care_experience}}
|
|
180
180
|
|
|
181
|
-
{{#provider_characteristic}}
|
|
182
|
-
{{> qrda_templates/provider_characteristic}}
|
|
183
|
-
{{/provider_characteristic}}
|
|
184
|
-
|
|
185
181
|
{{#substance_administered}}
|
|
186
182
|
{{> qrda_templates/medication_administered}}
|
|
187
183
|
{{/substance_administered}}
|
|
@@ -13,33 +13,11 @@ class Qrda1R5 < Mustache
|
|
|
13
13
|
@qdmPatient = patient.qdmPatient
|
|
14
14
|
@measures = measures
|
|
15
15
|
@provider = options[:provider]
|
|
16
|
-
@patient_address_option = options[:patient_addresses]
|
|
17
|
-
@patient_telecom_option = options[:patient_telecoms]
|
|
18
16
|
@performance_period_start = options[:start_time]
|
|
19
17
|
@performance_period_end = options[:end_time]
|
|
20
18
|
@submission_program = options[:submission_program]
|
|
21
19
|
end
|
|
22
20
|
|
|
23
|
-
def patient_addresses
|
|
24
|
-
@patient_address_option ||= [CQM::Address.new(
|
|
25
|
-
use: 'HP',
|
|
26
|
-
street: ['202 Burlington Rd.'],
|
|
27
|
-
city: 'Bedford',
|
|
28
|
-
state: 'MA',
|
|
29
|
-
zip: '01730',
|
|
30
|
-
country: 'US'
|
|
31
|
-
)]
|
|
32
|
-
JSON.parse(@patient_address_option.to_json)
|
|
33
|
-
end
|
|
34
|
-
|
|
35
|
-
def patient_telecoms
|
|
36
|
-
@patient_telecom_option ||= [CQM::Telecom.new(
|
|
37
|
-
use: 'HP',
|
|
38
|
-
value: '555-555-2003'
|
|
39
|
-
)]
|
|
40
|
-
JSON.parse(@patient_telecom_option.to_json)
|
|
41
|
-
end
|
|
42
|
-
|
|
43
21
|
def patient_characteristic_payer
|
|
44
22
|
JSON.parse(@qdmPatient.get_data_elements('patient_characteristic', 'payer').to_json)
|
|
45
23
|
end
|
|
@@ -195,7 +173,7 @@ class Qrda1R5 < Mustache
|
|
|
195
173
|
def physical_exam_order
|
|
196
174
|
JSON.parse(@qdmPatient.get_data_elements('physical_exam', 'order').to_json)
|
|
197
175
|
end
|
|
198
|
-
|
|
176
|
+
|
|
199
177
|
def physical_exam_performed
|
|
200
178
|
JSON.parse(@qdmPatient.get_data_elements('physical_exam', 'performed').to_json)
|
|
201
179
|
end
|
|
@@ -220,10 +198,6 @@ class Qrda1R5 < Mustache
|
|
|
220
198
|
JSON.parse(@qdmPatient.dataElements.where(hqmfOid: { '$in' => HQMF::Util::HQMFTemplateHelper.get_all_hqmf_oids('provider_care_experience', '') }).to_json)
|
|
221
199
|
end
|
|
222
200
|
|
|
223
|
-
def provider_characteristic
|
|
224
|
-
JSON.parse(@qdmPatient.get_data_elements('provider_characteristic', nil).to_json)
|
|
225
|
-
end
|
|
226
|
-
|
|
227
201
|
def substance_administered
|
|
228
202
|
JSON.parse(@qdmPatient.get_data_elements('substance', 'administered').to_json)
|
|
229
203
|
end
|
|
@@ -235,7 +209,7 @@ class Qrda1R5 < Mustache
|
|
|
235
209
|
def substance_recommended
|
|
236
210
|
JSON.parse(@qdmPatient.get_data_elements('substance', 'recommended').to_json)
|
|
237
211
|
end
|
|
238
|
-
|
|
212
|
+
|
|
239
213
|
def symptom
|
|
240
214
|
JSON.parse(@qdmPatient.get_data_elements('symptom', nil).to_json)
|
|
241
215
|
end
|
|
@@ -1,20 +1,14 @@
|
|
|
1
1
|
<recordTarget>
|
|
2
2
|
<patientRole>
|
|
3
3
|
<id extension="{{mrn}}" root="1.3.6.1.4.1.115" />
|
|
4
|
-
|
|
5
|
-
<
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
<country>{{country}}</country>
|
|
13
|
-
</addr>
|
|
14
|
-
{{/patient_addresses}}
|
|
15
|
-
{{#patient_telecoms}}
|
|
16
|
-
<telecom use="{{use}}" value="tel:{{value}}"/>
|
|
17
|
-
{{/patient_telecoms}}
|
|
4
|
+
<addr use="HP">
|
|
5
|
+
<streetAddressLine>202 Burlington Rd.</streetAddressLine>
|
|
6
|
+
<city>Bedford</city>
|
|
7
|
+
<state>MA</state>
|
|
8
|
+
<postalCode>01730</postalCode>
|
|
9
|
+
<country>US</country>
|
|
10
|
+
</addr>
|
|
11
|
+
<telecom use="WP" value="tel:+1-781-271-3000"/>
|
|
18
12
|
<patient>
|
|
19
13
|
{{#patient}}
|
|
20
14
|
<name>
|
|
@@ -27,9 +21,6 @@
|
|
|
27
21
|
<administrativeGenderCode {{> _code}}/>
|
|
28
22
|
{{/dataElementCodes}}
|
|
29
23
|
{{/patient_characteristic_sex}}
|
|
30
|
-
{{^patient_characteristic_sex}}
|
|
31
|
-
<administrativeGenderCode nullFlavor="UNK"/>
|
|
32
|
-
{{/patient_characteristic_sex}}
|
|
33
24
|
{{#patient_characteristic_birthdate}}
|
|
34
25
|
{{{birth_date_time}}}
|
|
35
26
|
{{/patient_characteristic_birthdate}}
|
|
@@ -38,20 +29,16 @@
|
|
|
38
29
|
<raceCode {{> _code}}/>
|
|
39
30
|
{{/dataElementCodes}}
|
|
40
31
|
{{/patient_characteristic_race}}
|
|
41
|
-
{{^patient_characteristic_race}}
|
|
42
|
-
<raceCode nullFlavor="UNK"/>
|
|
43
|
-
{{/patient_characteristic_race}}
|
|
44
32
|
{{#patient_characteristic_ethnicity}}
|
|
45
33
|
{{#dataElementCodes}}
|
|
46
34
|
<ethnicGroupCode {{> _code}}/>
|
|
47
35
|
{{/dataElementCodes}}
|
|
48
36
|
{{/patient_characteristic_ethnicity}}
|
|
49
|
-
{{^patient_characteristic_ethnicity}}
|
|
50
|
-
<ethnicGroupCode nullFlavor="UNK"/>
|
|
51
|
-
{{/patient_characteristic_ethnicity}}
|
|
52
37
|
<languageCommunication>
|
|
38
|
+
<templateId root="2.16.840.1.113883.3.88.11.83.2" assigningAuthorityName="HITSP/C83"/>
|
|
39
|
+
<templateId root="1.3.6.1.4.1.19376.1.5.3.1.2.1" assigningAuthorityName="IHE/PCC"/>
|
|
53
40
|
<languageCode code="eng"/>
|
|
54
41
|
</languageCommunication>
|
|
55
42
|
</patient>
|
|
56
43
|
</patientRole>
|
|
57
|
-
</recordTarget>
|
|
44
|
+
</recordTarget>
|
|
@@ -5,10 +5,10 @@
|
|
|
5
5
|
<id root="1.3.6.1.4.1.115" extension="{{object_id}}"/>
|
|
6
6
|
<code code="ASSERTION" codeSystem="2.16.840.1.113883.5.4"/>
|
|
7
7
|
<statusCode code="completed"/>
|
|
8
|
-
{{#
|
|
9
|
-
<!-- QDM Attribute: Relevant
|
|
10
|
-
{{{
|
|
11
|
-
{{/
|
|
8
|
+
{{#relevantDatetime}}
|
|
9
|
+
<!-- QDM Attribute: Relevant dateTime -->
|
|
10
|
+
{{{relevant_date_time}}}
|
|
11
|
+
{{/relevantDatetime}}
|
|
12
12
|
<value xsi:type="CD" code="281647001" displayName="Adverse reaction" codeSystem="2.16.840.1.113883.6.96" codeSystemName="SNOMED CT"/>
|
|
13
13
|
{{#authorDatetime}}
|
|
14
14
|
<!-- QDM Attribute: Author dateTime -->
|
|
@@ -6,8 +6,13 @@
|
|
|
6
6
|
<templateId root="2.16.840.1.113883.10.20.24.3.147" extension="2017-08-01"/>
|
|
7
7
|
<id root="1.3.6.1.4.1.115" extension="{{object_id}}"/>
|
|
8
8
|
<code code="ASSERTION" codeSystem="2.16.840.1.113883.5.4"/>
|
|
9
|
-
<statusCode code="completed" />
|
|
10
9
|
{{#prevalencePeriod}}
|
|
10
|
+
{{#completed_prevalence_period}}
|
|
11
|
+
<statusCode code="completed" />
|
|
12
|
+
{{/completed_prevalence_period}}
|
|
13
|
+
{{^completed_prevalence_period}}
|
|
14
|
+
<statusCode code="active" />
|
|
15
|
+
{{/completed_prevalence_period}}
|
|
11
16
|
<!-- QDM Attribute: Prevalence Period -->
|
|
12
17
|
{{{prevalence_period}}}
|
|
13
18
|
{{/prevalencePeriod}}
|
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
{{/category}}
|
|
9
9
|
{{^category}}
|
|
10
10
|
<!-- QDM Attribute: Category -->
|
|
11
|
-
<code nullFlavor="
|
|
11
|
+
<code nullFlavor="UNK"/>
|
|
12
12
|
{{/category}}
|
|
13
13
|
<statusCode code="completed"/>
|
|
14
14
|
{{#relevantPeriod}}
|
|
@@ -48,7 +48,7 @@
|
|
|
48
48
|
{{/negationRationale}}
|
|
49
49
|
<entryRelationship typeCode="REFR">
|
|
50
50
|
<observation classCode="OBS" moodCode="EVN">
|
|
51
|
-
<templateId root="2.16.840.1.113883.10.20.24.3.88" extension="
|
|
51
|
+
<templateId root="2.16.840.1.113883.10.20.24.3.88" extension="2014-12-01"/>
|
|
52
52
|
<id root="1.3.6.1.4.1.115" extension="{{object_id}}" />
|
|
53
53
|
<code code="77301-0" codeSystem="2.16.840.1.113883.6.1" displayName="reason" codeSystemName="LOINC"/>
|
|
54
54
|
<statusCode code="completed"/>
|
|
@@ -25,8 +25,13 @@
|
|
|
25
25
|
<code code="29308-4" codeSystem="2.16.840.1.113883.6.1">
|
|
26
26
|
<translation code="282291009" codeSystem="2.16.840.1.113883.6.96"/>
|
|
27
27
|
</code>
|
|
28
|
-
<statusCode code="completed" />
|
|
29
28
|
{{#prevalencePeriod}}
|
|
29
|
+
{{#completed_prevalence_period}}
|
|
30
|
+
<statusCode code="completed" />
|
|
31
|
+
{{/completed_prevalence_period}}
|
|
32
|
+
{{^completed_prevalence_period}}
|
|
33
|
+
<statusCode code="active" />
|
|
34
|
+
{{/completed_prevalence_period}}
|
|
30
35
|
<!-- QDM Attribute: Prevalence Period -->
|
|
31
36
|
{{{prevalence_period}}}
|
|
32
37
|
{{/prevalencePeriod}}
|
|
@@ -34,10 +34,6 @@
|
|
|
34
34
|
<!-- QDM Attribute: Admission Source -->
|
|
35
35
|
{{> qrda_templates/template_partials/_admission_source}}
|
|
36
36
|
{{/admissionSource}}
|
|
37
|
-
{{#principalDiagnosis}}
|
|
38
|
-
<!-- QDM Attribute: Principal Diagnosis -->
|
|
39
|
-
{{> qrda_templates/template_partials/_principal_diagnosis}}
|
|
40
|
-
{{/principalDiagnosis}}
|
|
41
37
|
{{#diagnoses}}
|
|
42
38
|
<!-- QDM Attribute: Diagnoses -->
|
|
43
39
|
{{> qrda_templates/template_partials/_encounter_diagnosis}}
|
|
@@ -1,12 +1,7 @@
|
|
|
1
1
|
<entry>
|
|
2
|
-
|
|
3
|
-
<substanceAdministration classCode="SBADM" moodCode="EVN" {{{negation_ind}}}>
|
|
4
|
-
{{/negated}}
|
|
5
|
-
{{^negated}}
|
|
6
|
-
<substanceAdministration classCode="SBADM" moodCode="EVN" negationInd="false">
|
|
7
|
-
{{/negated}}
|
|
2
|
+
<substanceAdministration classCode="SBADM" moodCode="EVN" {{{negation_ind}}}>
|
|
8
3
|
<!-- C-CDA R2 Immunization Activity -->
|
|
9
|
-
<templateId root="2.16.840.1.113883.10.20.22.4.52" extension="
|
|
4
|
+
<templateId root="2.16.840.1.113883.10.20.22.4.52" extension="2014-06-09"/>
|
|
10
5
|
<!-- Immunization Administered -->
|
|
11
6
|
<templateId root="2.16.840.1.113883.10.20.24.3.140" extension="2017-08-01"/>
|
|
12
7
|
<id root="1.3.6.1.4.1.115" extension="{{object_id}}"/>
|
|
@@ -9,6 +9,8 @@
|
|
|
9
9
|
<substanceAdministration moodCode="EVN" classCode="SBADM">
|
|
10
10
|
<!-- Medication Activity (consolidation) template -->
|
|
11
11
|
<templateId root="2.16.840.1.113883.10.20.22.4.16" extension="2014-06-09"/>
|
|
12
|
+
<!-- Medication, Active template -->
|
|
13
|
+
<templateId root="2.16.840.1.113883.10.20.24.3.41" extension="2016-02-01"/>
|
|
12
14
|
<id root="1.3.6.1.4.1.115" extension="{{object_id}}"/>
|
|
13
15
|
<text>{{description}}</text>
|
|
14
16
|
<statusCode code="active"/>
|
|
@@ -8,10 +8,6 @@
|
|
|
8
8
|
{{> _codes}}
|
|
9
9
|
<text>{{description}}</text>
|
|
10
10
|
<statusCode code="active"/>
|
|
11
|
-
{{#ordinality}}
|
|
12
|
-
<!-- QDM Attribute: Ordinality -->
|
|
13
|
-
{{> qrda_templates/template_partials/_ordinality}}
|
|
14
|
-
{{/ordinality}}
|
|
15
11
|
{{#anatomicalLocationSite}}
|
|
16
12
|
<!-- QDM Attribute: Anatomical Location Site -->
|
|
17
13
|
{{> qrda_templates/template_partials/_anatomical_location_site}}
|
|
@@ -12,10 +12,6 @@
|
|
|
12
12
|
<!-- QDM Attribute: Relevant Period -->
|
|
13
13
|
{{{relevant_period}}}
|
|
14
14
|
{{/relevantPeriod}}
|
|
15
|
-
{{#ordinality}}
|
|
16
|
-
<!-- QDM Attribute: Ordinality -->
|
|
17
|
-
{{> qrda_templates/template_partials/_ordinality}}
|
|
18
|
-
{{/ordinality}}
|
|
19
15
|
{{#method}}
|
|
20
16
|
<!-- QDM Attribute: Method -->
|
|
21
17
|
{{> qrda_templates/template_partials/_method}}
|
|
@@ -9,10 +9,6 @@
|
|
|
9
9
|
{{> _codes}}
|
|
10
10
|
<text>{{description}}</text>
|
|
11
11
|
<statusCode code="active"/>
|
|
12
|
-
{{#ordinality}}
|
|
13
|
-
<!-- QDM Attribute: Ordinality -->
|
|
14
|
-
{{> qrda_templates/template_partials/_ordinality}}
|
|
15
|
-
{{/ordinality}}
|
|
16
12
|
{{#anatomicalLocationSite}}
|
|
17
13
|
<!-- QDM Attribute: Anatomical Location Site -->
|
|
18
14
|
{{> qrda_templates/template_partials/_anatomical_location_site}}
|