Skip to content

Commit

Permalink
Merge pull request #979 from megin1989/main
Browse files Browse the repository at this point in the history
fix: add additional fields in CSV Via HTTPs Data Quality #975
  • Loading branch information
ratheesh-kr authored Jan 2, 2025
2 parents a69a10c + e0d9dc3 commit d1a6912
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 3 deletions.
Binary file modified hub-prime/lib/techbd-udi-jooq-ingress.auto.jar
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,12 @@
<head>
<link rel="stylesheet" href="https://unpkg.com/ag-grid-community/styles/ag-grid.css">
<link rel="stylesheet" href="https://unpkg.com/ag-grid-community/styles/ag-theme-alpine.css">

<style>
.grid-description{
font-size: 14px;
margin: 5px 0px 5px 15px;
}
</style>
<!-- if JSON Viewer is not already in the layout, add the following -->
<!-- <script src="https://unpkg.com/@alenaksu/json-viewer@2.0.0/dist/json-viewer.bundle.js"></script> -->

Expand Down Expand Up @@ -34,6 +39,12 @@
filter: "agTextColumnFilter",
headerTooltip: "The unique identifier for the TechBD tenant associated with the CSV file."
},
{
headerName: "TechBD Interaction ID",
field: "zip_file_hub_interaction_id",
filter: "agTextColumnFilter",
headerTooltip: "The unique zip file Interaction ID for the TechBD tenant associated with the CSV file."
},
{
headerName: "URI",
field: "uri",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@
headerName: "TechBD Interaction ID",
field: "hub_interaction_id",
filter: "agTextColumnFilter",
headerTooltip: "Unique identifier for each HTTP interaction in the system."
headerTooltip: "The unique zip file Interaction ID for the TechBD tenant associated with the CSV file."
// cellRenderer: AGGridAide.modalCellRenderer((params, modalAide) => {
// modalAide.viewFetchedJsonValue(window.shell.serverSideUrl(`/api/ux/tabular/jooq/${schemaName}/${viewdetail}/interaction_id/${params.value}.json`));
// }, modalAide)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3941,7 +3941,7 @@ SELECT
sifcr.created_at,
sifcr.tenant_id,
sifcr.uri,
sifcr.hub_interaction_id,
sifcr.zip_file_hub_interaction_id,
tasks.value ->> 'name' AS section,
error_payload.value ->> 'fieldName'::text AS fieldname,
error_payload.value ->> 'cell'::text AS value,
Expand Down

0 comments on commit d1a6912

Please sign in to comment.