Skip to content

Commit

Permalink
Merge pull request #79 from MeasureAuthoringTool/feature/MAT-7281
Browse files Browse the repository at this point in the history
Feature/mat 7281
  • Loading branch information
RohitKandimalla authored Jul 3, 2024
2 parents adf7b28 + a56453c commit 654a3ea
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>3.2.6</version>
<relativePath/>
<relativePath></relativePath>
</parent>
<groupId>gov.cms.madie</groupId>
<artifactId>madie-qdm-service</artifactId>
Expand Down
6 changes: 3 additions & 3 deletions src/main/java/gov/cms/madie/services/PackagingService.java
Original file line number Diff line number Diff line change
Expand Up @@ -81,11 +81,11 @@ public byte[] createQRDA(QrdaRequestDTO qrdaRequestDTO, String accessToken) {

log.info(
"Adding measure package artifacts to the measure package for measure {}", measure.getId());
String htmlDir = "/html/";
String qrdaDir = "/qrda/";
String htmlDir = "html/";
String qrdaDir = "qrda/";
Map<String, byte[]> entries = new HashMap<>();
entries.put(
"/" + measure.getEcqmTitle() + "_patients_results.html",
measure.getEcqmTitle() + "_patients_results.html",
qrdaExport.getSummaryReport().getBytes());
for (QrdaReportDTO qrda : qrdaExport.getIndividualReports()) {
entries.put(qrdaDir + qrda.getFilename() + ".xml", qrda.getQrda().getBytes());
Expand Down

0 comments on commit 654a3ea

Please sign in to comment.