Skip to content

Commit

Permalink
Merge pull request #244 from MeasureAuthoringTool/MAT-7611_resultDate…
Browse files Browse the repository at this point in the history
…TimeNotShifted

MAT-7611 shift dates for LaboratoryTestPerformed Result
  • Loading branch information
sb-cecilialiu authored Sep 11, 2024
2 parents 7cbaf54 + 996cca7 commit d571083
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
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.madie</groupId>
<artifactId>madie-java-models</artifactId>
<version>0.6.62-SNAPSHOT</version>
<version>0.6.63-SNAPSHOT</version>
<name>madie-java-models</name>
<description>Java based models for MADiE microservices</description>
<properties>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,7 @@ public void shiftDates(int shifted) {
this.resultDatetime = shiftDateByYear(this.resultDatetime, shifted);
this.relevantPeriod = shiftIntervalByYear(this.relevantPeriod, shifted);
this.referenceRange = shiftIntervalByYear(this.referenceRange, shifted);
this.result = shiftDateByYearForObject(this.result, shifted);
if (!CollectionUtils.isEmpty(this.components)) {
this.components.stream()
.forEach(
Expand Down

0 comments on commit d571083

Please sign in to comment.