Skip to content

Commit

Permalink
Merge pull request #618 from CMSgov/bug/stratifier-uuid-insensitivity
Browse files Browse the repository at this point in the history
Merge stratifier hot fix into master
  • Loading branch information
saquino0827 authored Feb 14, 2018
2 parents f691d19 + 0e40adb commit c3888f3
Show file tree
Hide file tree
Showing 11 changed files with 14 additions and 12 deletions.
2 changes: 1 addition & 1 deletion benchmark/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>gov.cms.qpp.conversion</groupId>
<artifactId>qpp-conversion-tool-parent</artifactId>
<version>1.2.2-RELEASE</version>
<version>1.2.3-RELEASE</version>
<relativePath>../</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion commandline/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>gov.cms.qpp.conversion</groupId>
<artifactId>qpp-conversion-tool-parent</artifactId>
<version>1.2.2-RELEASE</version>
<version>1.2.3-RELEASE</version>
<relativePath>../</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion commons/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>gov.cms.qpp.conversion</groupId>
<artifactId>qpp-conversion-tool-parent</artifactId>
<version>1.2.2-RELEASE</version>
<version>1.2.3-RELEASE</version>
<relativePath>../</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion converter/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>gov.cms.qpp.conversion</groupId>
<artifactId>qpp-conversion-tool-parent</artifactId>
<version>1.2.2-RELEASE</version>
<version>1.2.3-RELEASE</version>
<relativePath>../</relativePath>
</parent>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ protected void followUpHook(Node node, SubPopulation sub) {

sub.getStrata().forEach(stratum -> {
Predicate<Node> seek = child ->
child.getValue(StratifierDecoder.STRATIFIER_ID).equals(stratum);
child.getValue(StratifierDecoder.STRATIFIER_ID).equalsIgnoreCase(stratum);

if (strataNodes.stream().noneMatch(seek)) {
LocalizedError error = ErrorCode.CPC_QUALITY_MEASURE_ID_MISSING_STRATA.format(stratum,
Expand Down
6 changes: 4 additions & 2 deletions converter/src/test/resources/fixtures/qppct298/cms137v5.xml
Original file line number Diff line number Diff line change
Expand Up @@ -687,6 +687,7 @@
</observation>
</entryRelationship>
<!-- Stratifier for EFB5B088-CE10-43DE-ACCD-9913B7AC12A2-->
<!-- Includes lower and uppercase characters -->
<entryRelationship typeCode="COMP">
<observation classCode="OBS" moodCode="EVN">
<templateId root="2.16.840.1.113883.10.20.27.3.20"/>
Expand Down Expand Up @@ -718,12 +719,13 @@
</entryRelationship>
<reference typeCode="REFR">
<externalObservation>
<id root="EFB5B088-CE10-43DE-ACCD-9913B7AC12A2"/>
<id root="efb5b088-ce10-43de-accd-9913b7ac12a2"/>
</externalObservation>
</reference>
</observation>
</entryRelationship>
<!-- Stratifier for 94B9555F-8700-45EF-B69F-433EBEDE8051-->
<!--Includes lower and uppercase characters-->
<entryRelationship typeCode="COMP">
<observation classCode="OBS" moodCode="EVN">
<templateId root="2.16.840.1.113883.10.20.27.3.20"/>
Expand Down Expand Up @@ -755,7 +757,7 @@
</entryRelationship>
<reference typeCode="REFR">
<externalObservation>
<id root="94B9555F-8700-45EF-B69F-433EBEDE8051"/>
<id root="94B9555F-8700-45eF-B69F-433eBEdE8051"/>
</externalObservation>
</reference>
</observation>
Expand Down
2 changes: 1 addition & 1 deletion frontend/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "qpp-conversion-frontend",
"version": "1.2.2",
"version": "1.2.3",
"license": "MIT",
"scripts": {
"ng": "ng",
Expand Down
2 changes: 1 addition & 1 deletion generate/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>qpp-conversion-tool-parent</artifactId>
<groupId>gov.cms.qpp.conversion</groupId>
<version>1.2.2-RELEASE</version>
<version>1.2.3-RELEASE</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<groupId>gov.cms.qpp.conversion</groupId>
<artifactId>qpp-conversion-tool-parent</artifactId>
<packaging>pom</packaging>
<version>1.2.2-RELEASE</version>
<version>1.2.3-RELEASE</version>
<name>QPP Conversion Tool</name>

<properties>
Expand Down
2 changes: 1 addition & 1 deletion rest-api/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>gov.cms.qpp.conversion</groupId>
<artifactId>qpp-conversion-tool-parent</artifactId>
<version>1.2.2-RELEASE</version>
<version>1.2.3-RELEASE</version>
<relativePath>../</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion test-commons/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>gov.cms.qpp.conversion</groupId>
<artifactId>qpp-conversion-tool-parent</artifactId>
<version>1.2.2-RELEASE</version>
<version>1.2.3-RELEASE</version>
<relativePath>../</relativePath>
</parent>

Expand Down

0 comments on commit c3888f3

Please sign in to comment.