diff --git a/src/main/resources/templates/Measure.liquid b/src/main/resources/templates/Measure.liquid index 3d1cf443..8e243a55 100644 --- a/src/main/resources/templates/Measure.liquid +++ b/src/main/resources/templates/Measure.liquid @@ -64,8 +64,7 @@ {% if Measure.effectivePeriod.exists() %}
Dependencies
Type | -Elements | +Resource Type | +Resource Elements | Valueset Name | Valueset |
---|---|---|---|---|---|
{{group.id}} | -+ | {% if group.extension.where(url = 'http://hl7.org/fhir/us/cqfmeasures/StructureDefinition/cqfm-scoring').exists() %} Group scoring: {% for extension in group.extension.where(url = 'http://hl7.org/fhir/us/cqfmeasures/StructureDefinition/cqfm-scoring') %} @@ -685,19 +684,19 @@ | |||
Type: |
- {% if extension.coding.exists() %}
- {% for coding in extension.coding %}
+ {% if extension.value.coding.exists() %}
+ {% for coding in extension.value.coding %}
{{iif(coding.display.exists(), coding.display, coding.code)}} {{iif(coding.system != 'http://terminology.hl7.org/CodeSystem/measure-type', '(' + coding.system + ')', '')}} {% endfor %} {% endif %} - {% if extension.coding.exists().not() and extension.text.exists() %} + {% if extension.value.coding.exists().not() and extension.text.exists() %} {{extension.text}} {% endif %} |
@@ -724,14 +723,14 @@
Improvement Notation: |
{% for extension in group.extension.where(url = 'http://hl7.org/fhir/us/cqfmeasures/StructureDefinition/cqfm-improvementNotation') %}
- {% if extension.coding.exists() %}
- {% for coding in extension.coding %}
+ {% if extension.value.coding.exists() %}
+ {% for coding in extension.value.coding %}
{{iif(coding.display.exists(), coding.display, coding.code)}} {{iif(coding.system != 'http://terminology.hl7.org/CodeSystem/measure-improvement-notation', '(' + coding.system + ')', '')}} {% endfor %} {% endif %} - {% if extension.coding.exists().not() and extension.text.exists() %} + {% if extension.value.coding.exists().not() and extension.text.exists() %} {{extension.text}} {% endif %} {% endfor %} @@ -739,6 +738,13 @@ | ||
Applies To: | +{{group.extension.where(url = 'http://hl7.org/fhir/us/cqfmeasures/StructureDefinition/cqfm-appliesTo').value}} | +||||