diff --git a/CHANGELOG.md b/CHANGELOG.md index be4d124bb..82c6e90ba 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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] diff --git a/bpdm-common-test/src/main/kotlin/org/eclipse/tractusx/bpdm/test/testdata/gate/BusinessPartnerVerboseValues.kt b/bpdm-common-test/src/main/kotlin/org/eclipse/tractusx/bpdm/test/testdata/gate/BusinessPartnerVerboseValues.kt index 64da4714c..c91d12667 100644 --- a/bpdm-common-test/src/main/kotlin/org/eclipse/tractusx/bpdm/test/testdata/gate/BusinessPartnerVerboseValues.kt +++ b/bpdm-common-test/src/main/kotlin/org/eclipse/tractusx/bpdm/test/testdata/gate/BusinessPartnerVerboseValues.kt @@ -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), diff --git a/bpdm-gate/src/main/kotlin/org/eclipse/tractusx/bpdm/gate/service/OutputUpsertMappings.kt b/bpdm-gate/src/main/kotlin/org/eclipse/tractusx/bpdm/gate/service/OutputUpsertMappings.kt index 6bc676151..ebedbfac5 100644 --- a/bpdm-gate/src/main/kotlin/org/eclipse/tractusx/bpdm/gate/service/OutputUpsertMappings.kt +++ b/bpdm-gate/src/main/kotlin/org/eclipse/tractusx/bpdm/gate/service/OutputUpsertMappings.kt @@ -79,7 +79,8 @@ class OutputUpsertMappings { industrialZone = industrialZone, building = building, floor = floor, - door = door + door = door, + taxJurisdictionCode = taxJurisdictionCode ) private fun AlternativeAddress.toEntity() =