Skip to content

Commit

Permalink
fix(bpdm-gate): Add Tax Jurisdiction code to save it to the Output
Browse files Browse the repository at this point in the history
fix(bpdm-gate): Add Tax Jurisdiction code to save it to the Output
  • Loading branch information
SujitMBRDI committed Sep 20, 2024
1 parent 09a2dc1 commit b198cff
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ For changes to the BPDM Helm charts please consult the [changelog](charts/bpdm/C
- BPDM Cleaning Service Dummy: Improve duplication check to better distinguish between incoming business partners
- Apps: Updated double precision data type for Geographic-data([#978](https://github.com/eclipse-tractusx/bpdm/issues/978))
- BPDM Gate: Improved error response by adding external id details and reduced csv columns by removing support for uncategorized fields in csv file for partner upload process([#700](https://github.com/eclipse-tractusx/sig-release/issues/700))
- BPDM Gate: Enabled Tax Jurisdiction code to save it to the Output.

## [6.1.0] - [2024-07-15]

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -802,7 +802,8 @@ object BusinessPartnerVerboseValues {
industrialZone = "industrial-zone",
building = "building",
floor = "floor",
door = "door"
door = "door",
taxJurisdictionCode = "123"
),
alternativePostalAddress = AlternativePostalAddressDto(
geographicCoordinates = GeoCoordinateDto(0.6, 0.6, 0.6),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,8 @@ class OutputUpsertMappings {
industrialZone = industrialZone,
building = building,
floor = floor,
door = door
door = door,
taxJurisdictionCode = taxJurisdictionCode
)

private fun AlternativeAddress.toEntity() =
Expand Down

0 comments on commit b198cff

Please sign in to comment.