Skip to content

Commit

Permalink
fix: add new field uri in csv via https page tech-by-design#910
Browse files Browse the repository at this point in the history
  • Loading branch information
megin1989 committed Dec 27, 2024
1 parent 2b08095 commit 7b22c0f
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 1 deletion.
Binary file modified hub-prime/lib/techbd-udi-jooq-ingress.auto.jar
Binary file not shown.
2 changes: 1 addition & 1 deletion hub-prime/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
</parent>
<groupId>org.techbd</groupId>
<artifactId>hub-prime</artifactId>
<version>0.404.0</version>
<version>0.405.0</version>
<packaging>war</packaging>
<name>Tech by Design Hub (Prime)</name>
<description>Tech by Design Hub (Primary)</description>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,7 @@
// }, modalAide)
},
{ headerName: "TechBD Tenant ID", field: "tenant_id", headerTooltip: "ID of the tenant involved in the interaction", filter: "agTextColumnFilter" },
{ headerName: "URI", field: "uri", headerTooltip: "The URI associated with the interaction", filter: "agTextColumnFilter" },
{ headerName: "File Count", field: "file_count", headerTooltip: "The total number of files processed, including demographic, administrative, observation, and profile files.", filter: "agNumberColumnFilter" },
{ headerName: "FHIR Count", field: "fhir_count", headerTooltip: "The total number of FHIR interactions associated with this HTTP request.", filter: "agNumberColumnFilter", cellRenderer: 'agGroupCellRenderer' },
{ headerName: "FHIR Success Count", field: "fhir_count_success", headerTooltip: "The number of successful FHIR interactions where an HTTP response was forwarded.", filter: "agNumberColumnFilter" },
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3803,6 +3803,7 @@ SELECT
sizfr.tenant_id,
sizfr.hub_interaction_id,
sizfr.created_at,
sizfr.uri,
SUM(CASE WHEN siffcr.demographic_data_file_name IS NOT NULL THEN 1 ELSE 0 END) +
SUM(CASE WHEN siffcr.qe_admin_data_file_name IS NOT NULL THEN 1 ELSE 0 END) +
SUM(CASE WHEN siffcr.screening_observation_data_file_name IS NOT NULL THEN 1 ELSE 0 END) +
Expand All @@ -3822,6 +3823,7 @@ LEFT JOIN
GROUP BY
sizfr.hub_interaction_id,
sizfr.created_at,
sizfr.uri,
sizfr.tenant_id_lower,
sizfr.tenant_id,
fhir_summary.fhir_count,
Expand Down

0 comments on commit 7b22c0f

Please sign in to comment.