From d9ea6efc43b4e05baca7ffaa4a3ccc782c42a66d Mon Sep 17 00:00:00 2001 From: Barbara Dewein Date: Tue, 3 Sep 2024 11:46:33 +0200 Subject: [PATCH 01/16] remove test description --- rules/unit-UBL-DE/UBL-IN_DE-R-020.xml | 2 -- 1 file changed, 2 deletions(-) diff --git a/rules/unit-UBL-DE/UBL-IN_DE-R-020.xml b/rules/unit-UBL-DE/UBL-IN_DE-R-020.xml index 4d71e3d7..633ab263 100644 --- a/rules/unit-UBL-DE/UBL-IN_DE-R-020.xml +++ b/rules/unit-UBL-DE/UBL-IN_DE-R-020.xml @@ -6,7 +6,6 @@ - DE-R-020 unit test DE-R-020 @@ -459,7 +458,6 @@ - DE-R-020 unit test DE-R-020 From d600747f44f4e9580ee4d6b0154fa54cfcf0d376 Mon Sep 17 00:00:00 2001 From: Barbara Dewein Date: Wed, 4 Sep 2024 16:31:49 +0200 Subject: [PATCH 02/16] add workflow --- .../workflows/build-and-deploy-barnch.yaml | 22 +++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .github/workflows/build-and-deploy-barnch.yaml diff --git a/.github/workflows/build-and-deploy-barnch.yaml b/.github/workflows/build-and-deploy-barnch.yaml new file mode 100644 index 00000000..a9557948 --- /dev/null +++ b/.github/workflows/build-and-deploy-barnch.yaml @@ -0,0 +1,22 @@ +name: Build and deploy non-master branch to test-docs +on: + push: + branches-ignore: + - master + +jobs: + build: + runs-on: ubuntu-latest + steps: + - name: Checkout source code + uses: actions/checkout@v2 + + - name: Build Spec + run: bash ./build.sh + + - name: Deploy on S3 + env: + AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }} + AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }} + run: | + aws s3 sync --acl public-read --region eu-west-1 target/site ${{ secrets.AWS_S3_PATH }}/poacc/${GITHUB_REF#refs/heads/}/billing/3.0 From d990746c8851fc3842eaa86d12fbe50b47061da2 Mon Sep 17 00:00:00 2001 From: Barbara Dewein Date: Wed, 4 Sep 2024 16:32:02 +0200 Subject: [PATCH 03/16] add workflow --- .github/workflows/build-and-deploy-barnch.yml | 22 +++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .github/workflows/build-and-deploy-barnch.yml diff --git a/.github/workflows/build-and-deploy-barnch.yml b/.github/workflows/build-and-deploy-barnch.yml new file mode 100644 index 00000000..a9557948 --- /dev/null +++ b/.github/workflows/build-and-deploy-barnch.yml @@ -0,0 +1,22 @@ +name: Build and deploy non-master branch to test-docs +on: + push: + branches-ignore: + - master + +jobs: + build: + runs-on: ubuntu-latest + steps: + - name: Checkout source code + uses: actions/checkout@v2 + + - name: Build Spec + run: bash ./build.sh + + - name: Deploy on S3 + env: + AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }} + AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }} + run: | + aws s3 sync --acl public-read --region eu-west-1 target/site ${{ secrets.AWS_S3_PATH }}/poacc/${GITHUB_REF#refs/heads/}/billing/3.0 From ca59205d92adad167e08f29e3831157635e5141c Mon Sep 17 00:00:00 2001 From: Barbara Dewein Date: Wed, 4 Sep 2024 16:34:19 +0200 Subject: [PATCH 04/16] delete workflow --- .../workflows/build-and-deploy-barnch.yaml | 22 ------------------- 1 file changed, 22 deletions(-) delete mode 100644 .github/workflows/build-and-deploy-barnch.yaml diff --git a/.github/workflows/build-and-deploy-barnch.yaml b/.github/workflows/build-and-deploy-barnch.yaml deleted file mode 100644 index a9557948..00000000 --- a/.github/workflows/build-and-deploy-barnch.yaml +++ /dev/null @@ -1,22 +0,0 @@ -name: Build and deploy non-master branch to test-docs -on: - push: - branches-ignore: - - master - -jobs: - build: - runs-on: ubuntu-latest - steps: - - name: Checkout source code - uses: actions/checkout@v2 - - - name: Build Spec - run: bash ./build.sh - - - name: Deploy on S3 - env: - AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }} - AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }} - run: | - aws s3 sync --acl public-read --region eu-west-1 target/site ${{ secrets.AWS_S3_PATH }}/poacc/${GITHUB_REF#refs/heads/}/billing/3.0 From b056d0068e18d2016b695c092e6026d5ec799002 Mon Sep 17 00:00:00 2001 From: Barbara Dewein Date: Wed, 4 Sep 2024 16:41:04 +0200 Subject: [PATCH 05/16] update to improved validator --- build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sh b/build.sh index 49ea02e7..cb688b71 100755 --- a/build.sh +++ b/build.sh @@ -14,7 +14,7 @@ docker run --rm -i \ # Validator -docker run --rm -i -v $PROJECT:/src anskaffelser/validator:2.1.0 build -x -t -n eu.peppol.postaward.v3.billing -a rules,guide -target target/validator /src +ocker run --rm -i -v $PROJECT:/src phelger/vefa-validator:2.3.0 build -x -t -n eu.peppol.postaward.v3.billing -a rules,guide -target target/validator /src # Generate adoc-files from rules From c05dbb61f42328e49b14cb2e1ceb48f9f7a73c55 Mon Sep 17 00:00:00 2001 From: Barbara Dewein Date: Wed, 4 Sep 2024 16:42:19 +0200 Subject: [PATCH 06/16] update build2.sh to improved validator --- build2.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build2.sh b/build2.sh index 2cc6bdae..df2761fc 100644 --- a/build2.sh +++ b/build2.sh @@ -11,7 +11,7 @@ fi docker run --rm -i -v $PROJECT:/src -v $PROJECT/target:/target difi/vefa-structure:0.7 || exit 2 # Validator -docker run --rm -i -v $PROJECT:/src anskaffelser/validator:2.1.0 build -x -t -n eu.peppol.postaward.v3.billing -a rules,guide -target target/validator /src || exit 3 +ocker run --rm -i -v $PROJECT:/src phelger/vefa-validator:2.3.0 build -x -t -n eu.peppol.postaward.v3.billing -a rules,guide -target target/validator /src || exit 3 # Generate adoc-files from rules From 2c8e990a0d591539df2cc2b0d5493313e7b536e4 Mon Sep 17 00:00:00 2001 From: Barbara Dewein Date: Wed, 4 Sep 2024 16:45:43 +0200 Subject: [PATCH 07/16] fix typo --- build.sh | 2 +- build2.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/build.sh b/build.sh index cb688b71..1eedf553 100755 --- a/build.sh +++ b/build.sh @@ -14,7 +14,7 @@ docker run --rm -i \ # Validator -ocker run --rm -i -v $PROJECT:/src phelger/vefa-validator:2.3.0 build -x -t -n eu.peppol.postaward.v3.billing -a rules,guide -target target/validator /src +docker run --rm -i -v $PROJECT:/src phelger/vefa-validator:2.3.0 build -x -t -n eu.peppol.postaward.v3.billing -a rules,guide -target target/validator /src # Generate adoc-files from rules diff --git a/build2.sh b/build2.sh index df2761fc..651de4a5 100644 --- a/build2.sh +++ b/build2.sh @@ -11,7 +11,7 @@ fi docker run --rm -i -v $PROJECT:/src -v $PROJECT/target:/target difi/vefa-structure:0.7 || exit 2 # Validator -ocker run --rm -i -v $PROJECT:/src phelger/vefa-validator:2.3.0 build -x -t -n eu.peppol.postaward.v3.billing -a rules,guide -target target/validator /src || exit 3 +docker run --rm -i -v $PROJECT:/src phelger/vefa-validator:2.3.0 build -x -t -n eu.peppol.postaward.v3.billing -a rules,guide -target target/validator /src || exit 3 # Generate adoc-files from rules From 73b76359cd7a81f95b626e12696156441b84ecc8 Mon Sep 17 00:00:00 2001 From: Barbara Dewein Date: Thu, 5 Sep 2024 08:04:01 +0200 Subject: [PATCH 08/16] fix error level in test DE-R-027 --- rules/unit-UBL-DE/UBL-IN_DE-R-027.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rules/unit-UBL-DE/UBL-IN_DE-R-027.xml b/rules/unit-UBL-DE/UBL-IN_DE-R-027.xml index 61b24c78..c391d670 100644 --- a/rules/unit-UBL-DE/UBL-IN_DE-R-027.xml +++ b/rules/unit-UBL-DE/UBL-IN_DE-R-027.xml @@ -303,7 +303,7 @@ - DE-R-027 + DE-R-027 urn:cen.eu:en16931:2017#compliant#urn:fdc:peppol.eu:2017:poacc:billing:3.0 From 2e5125768ac8347475f47266589892d69ef5d3ae Mon Sep 17 00:00:00 2001 From: Barbara Dewein Date: Thu, 5 Sep 2024 08:04:27 +0200 Subject: [PATCH 09/16] fix typo in referenced rule --- structure/syntax/part/payee-party.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/structure/syntax/part/payee-party.xml b/structure/syntax/part/payee-party.xml index bc5f88c4..0c64477a 100644 --- a/structure/syntax/part/payee-party.xml +++ b/structure/syntax/part/payee-party.xml @@ -18,7 +18,7 @@ This element is used for both the identification of the Payee, or the unique banking reference identifier of Payee (assigned by the Payee bank.) For payee identification use ICD code list, for SEPA bank assigned creditor reference, use SEPA. Text BT-60, BT-90 - DE-R-30 + DE-R-030 schemeID From ba941b7de88f9c4439d1d1e286a27f4fdc37db99 Mon Sep 17 00:00:00 2001 From: Barbara Dewein Date: Thu, 5 Sep 2024 08:04:47 +0200 Subject: [PATCH 10/16] move assertion description --- rules/unit-UBL-DE/UBL-IN_DE-R-001.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rules/unit-UBL-DE/UBL-IN_DE-R-001.xml b/rules/unit-UBL-DE/UBL-IN_DE-R-001.xml index 6b76c629..65fa7b50 100644 --- a/rules/unit-UBL-DE/UBL-IN_DE-R-001.xml +++ b/rules/unit-UBL-DE/UBL-IN_DE-R-001.xml @@ -6,8 +6,8 @@ + DE-R-001 unit test DE-R-001 - DE-R-001 unit test urn:cen.eu:en16931:2017#compliant#urn:fdc:peppol.eu:2017:poacc:billing:3.0 From de175ed3b28d2115b26eb649dff1aa595abe74b7 Mon Sep 17 00:00:00 2001 From: Barbara Dewein Date: Thu, 5 Sep 2024 08:26:25 +0200 Subject: [PATCH 11/16] fix typo --- rules/unit-UBL-DE/UBL-IN_DE-R-031.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rules/unit-UBL-DE/UBL-IN_DE-R-031.xml b/rules/unit-UBL-DE/UBL-IN_DE-R-031.xml index 83ceee02..b5a1d50f 100644 --- a/rules/unit-UBL-DE/UBL-IN_DE-R-031.xml +++ b/rules/unit-UBL-DE/UBL-IN_DE-R-031.xml @@ -461,7 +461,7 @@ - DE-R-030 + DE-R-031 From d8dd724c367ed686ce4920e2e77b5c8b98c2cebb Mon Sep 17 00:00:00 2001 From: Barbara Dewein Date: Thu, 5 Sep 2024 13:07:30 +0200 Subject: [PATCH 12/16] add description, remove unwanted instructions --- rules/unit-UBL-DE/UBL-IN_DE-R-016.xml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/rules/unit-UBL-DE/UBL-IN_DE-R-016.xml b/rules/unit-UBL-DE/UBL-IN_DE-R-016.xml index 8b4d4c11..4cf5372a 100644 --- a/rules/unit-UBL-DE/UBL-IN_DE-R-016.xml +++ b/rules/unit-UBL-DE/UBL-IN_DE-R-016.xml @@ -1,7 +1,7 @@ - DE-R-016 description tbd + DE-R-016 If one of the VAT codes S, Z, E, AE, K, G, L, or M is used, an invoice shall contain at least one of the following elements: "Seller VAT identifier" (BT-31) or "Seller tax registration identifier" (BT-32) or "SELLER TAX REPRESENTATIVE PARTY" (BG-11). DE-R-016 @@ -470,9 +470,6 @@ 0 0 - S 19 From b9a19fdc06c41d5dd78a3eca2b2d8360a1b559cb Mon Sep 17 00:00:00 2001 From: Barbara Dewein Date: Thu, 5 Sep 2024 13:07:45 +0200 Subject: [PATCH 13/16] add file --- rules/unit-UBL-DE/UBL-IN_DE-R-000.xml | 672 ++++++++++++++++++++++++++ 1 file changed, 672 insertions(+) create mode 100644 rules/unit-UBL-DE/UBL-IN_DE-R-000.xml diff --git a/rules/unit-UBL-DE/UBL-IN_DE-R-000.xml b/rules/unit-UBL-DE/UBL-IN_DE-R-000.xml new file mode 100644 index 00000000..d34943aa --- /dev/null +++ b/rules/unit-UBL-DE/UBL-IN_DE-R-000.xml @@ -0,0 +1,672 @@ + + + + DE-R-0xx rules shall not fire for other countries + DE-R-001 + DE-R-002 + DE-R-003 + DE-R-004 + DE-R-005 + DE-R-006 + DE-R-007 + DE-R-008 + DE-R-009 + DE-R-010 + DE-R-011 + DE-R-014 + DE-R-015 + DE-R-016 + DE-R-017 + DE-R-018 + DE-R-019 + DE-R-020 + DE-R-022 + DE-R-023 + DE-R-024 + DE-R-025 + DE-R-026 + DE-R-027 + DE-R-028 + DE-R-030 + DE-R-031 + + + + DE-R-001 + DE-R-002 + DE-R-003 + DE-R-004 + DE-R-005 + DE-R-006 + DE-R-007 + DE-R-008 + DE-R-009 + DE-R-010 + DE-R-011 + DE-R-014 + DE-R-015 + DE-R-016 + DE-R-017 + DE-R-018 + DE-R-019 + DE-R-020 + DE-R-022 + DE-R-023 + DE-R-024 + DE-R-025 + DE-R-026 + DE-R-027 + DE-R-028 + DE-R-030 + DE-R-031 + + + + urn:cen.eu:en16931:2017#compliant#urn:fdc:peppol.eu:2017:poacc:billing:3.0 + urn:fdc:peppol.eu:2017:poacc:billing:01:1.0 + 1234567 + 2018-04-13 + 2018-04-13 + 380 + Invoice Note Description + 2018-04-13 + EUR + 90000000-03083-12 + + 2018-04-13 + 2018-04-13 + + + 65002278 + ABC123456789 + + + ANG987654321 + + + 0000000752 + + + 01_15_Anhang_01.pdf + Aufschlüsselung der einzelnen Leistungspositionen + + + PR12345678 + + + + 123456 + + 987654321 + + + [Seller name] + + + [Seller address line 1] + [Seller address line 2] + [Seller city] + 12345 + + SE + + + + + + VAT + + + + + + FC + + + + [Seller trading name] + 123456789 + Amtsgericht […], Geschäftsführer: […], Sitz der Gesellschaft […], Aufsichtsratvorsitzender: […] + + + Tim Tester + 012 3456789 + tim.tester@test.com + + + + + + 123456 + + 138 + + + [Buyer name] + + + [Buyer address line 1] + [Buyer address line 2] + [Buyer city] + 98765 + + [Buyer address line 3] + + + DE + + + + DE12345ABC + + VAT + + + + [Buyer name] + 90000000-03083-12 + + + Tina Tester + 0800 123456 + tester@test.de + + + + + + 74 + + + [Payee name] + + + + + 2018-04-13 + + 68 + + [Deliver to street] + 4. OG + [Deliver to city] + 98765 + Bayern + + DE + + + + + + [Deliver to party name] + + + + + 58 + Deb. 12345 / Fact. 9876543 + + DE75512108001245126199 + [Payment account name] + + [BIC] + + + + + Bitte überweisen Sie bis zum 24.01.2015 auf das unten aufgeführte Konto. + + + false + 102 + Fixed long term + 0 + 0 + 0 + + + S + 19 + + VAT + + + + + + + 2048.44 + + 10781.25 + 2048.44 + + S + 19 + + VAT + + + + + 0 + 0 + + E + 19 + a reason + + VAT + + + + + + + + 10781.25 + 10781.25 + 12829.69 + 0 + 0 + 0 + 0 + 12829.69 + + + + + 1 + Die letzte Lieferung im Rahmen des abgerechneten Abonnements erfolgt in 12/2016 Lieferung erfolgt / erfolgte direkt vom Verlag + 30 + 4743.75 + + 2018-04-13 + 2018-04-13 + + + 6171175.1 + + + Anforderungmanagament + Beratung + + 1034 + + + 0721-880X + + + S + 19 + + VAT + + + + + 158.125 + + + + 2 + 42 + 6037.5 + + Beratung + + S + 19 + + VAT + + + + + 143.75 + + + + + + + + + DE-R-001 + DE-R-002 + DE-R-003 + DE-R-004 + DE-R-005 + DE-R-006 + DE-R-007 + DE-R-008 + DE-R-009 + DE-R-010 + DE-R-011 + DE-R-014 + DE-R-015 + DE-R-016 + DE-R-017 + DE-R-018 + DE-R-019 + DE-R-020 + DE-R-022 + DE-R-023 + DE-R-024 + DE-R-025 + DE-R-026 + DE-R-027 + DE-R-028 + DE-R-030 + DE-R-031 + + + + urn:cen.eu:en16931:2017#compliant#urn:fdc:peppol.eu:2017:poacc:billing:3.0 + urn:fdc:peppol.eu:2017:poacc:billing:01:1.0 + 1234567 + 2018-04-13 + 2018-04-13 + 380 + Invoice Note Description + 2018-04-13 + EUR + 90000000-03083-12 + + 2018-04-13 + 2018-04-13 + + + 65002278 + ABC123456789 + + + ANG987654321 + + + 0000000752 + + + 01_15_Anhang_01.pdf + Aufschlüsselung der einzelnen Leistungspositionen + + + PR12345678 + + + + 123456 + + 987654321 + + + [Seller name] + + + [Seller address line 1] + [Seller address line 2] + [Seller city] + 12345 + + DE + + + + + + VAT + + + + + + FC + + + + [Seller trading name] + 123456789 + Amtsgericht […], Geschäftsführer: […], Sitz der Gesellschaft […], Aufsichtsratvorsitzender: […] + + + Tim Tester + 012 3456789 + tim.tester@test.com + + + + + + 123456 + + 138 + + + [Buyer name] + + + [Buyer address line 1] + [Buyer address line 2] + [Buyer city] + 98765 + + [Buyer address line 3] + + + SE + + + + DE12345ABC + + VAT + + + + [Buyer name] + 90000000-03083-12 + + + Tina Tester + 0800 123456 + tester@test.de + + + + + + 74 + + + [Payee name] + + + + + 2018-04-13 + + 68 + + [Deliver to street] + 4. OG + [Deliver to city] + 98765 + Bayern + + DE + + + + + + [Deliver to party name] + + + + + 58 + Deb. 12345 / Fact. 9876543 + + DE75512108001245126199 + [Payment account name] + + [BIC] + + + + + Bitte überweisen Sie bis zum 24.01.2015 auf das unten aufgeführte Konto. + + + false + 102 + Fixed long term + 0 + 0 + 0 + + + S + 19 + + VAT + + + + + + + 2048.44 + + 10781.25 + 2048.44 + + S + 19 + + VAT + + + + + 0 + 0 + + E + 19 + a reason + + VAT + + + + + + + + 10781.25 + 10781.25 + 12829.69 + 0 + 0 + 0 + 0 + 12829.69 + + + + + 1 + Die letzte Lieferung im Rahmen des abgerechneten Abonnements erfolgt in 12/2016 Lieferung erfolgt / erfolgte direkt vom Verlag + 30 + 4743.75 + + 2018-04-13 + 2018-04-13 + + + 6171175.1 + + + Anforderungmanagament + Beratung + + 1034 + + + 0721-880X + + + S + 19 + + VAT + + + + + 158.125 + + + + 2 + 42 + 6037.5 + + Beratung + + S + 19 + + VAT + + + + + 143.75 + + + + + + From ad346f75914ccb2b659e87ae97324725c6db9837 Mon Sep 17 00:00:00 2001 From: Barbara Dewein Date: Thu, 5 Sep 2024 13:44:12 +0200 Subject: [PATCH 14/16] test --- rules/unit-UBL-DE/UBL-IN_DE-R-000.xml | 46 +++++++++++++++++++++++---- 1 file changed, 40 insertions(+), 6 deletions(-) diff --git a/rules/unit-UBL-DE/UBL-IN_DE-R-000.xml b/rules/unit-UBL-DE/UBL-IN_DE-R-000.xml index d34943aa..eefd4810 100644 --- a/rules/unit-UBL-DE/UBL-IN_DE-R-000.xml +++ b/rules/unit-UBL-DE/UBL-IN_DE-R-000.xml @@ -71,7 +71,9 @@ Invoice Note Description 2018-04-13 EUR + 2018-04-13 2018-04-13 @@ -105,8 +107,12 @@ [Seller address line 1] [Seller address line 2] + + SE @@ -128,11 +134,13 @@ 123456789 Amtsgericht […], Geschäftsführer: […], Sitz der Gesellschaft […], Aufsichtsratvorsitzender: […] + @@ -147,8 +155,12 @@ [Buyer address line 1] [Buyer address line 2] + + [Buyer address line 3] @@ -207,8 +219,12 @@ [Deliver to street] 4. OG + + Bayern DE @@ -221,6 +237,7 @@ + Bitte überweisen Sie bis zum 24.01.2015 auf das unten aufgeführte Konto. @@ -243,9 +261,6 @@ 0 0 - S 19 @@ -262,7 +277,9 @@ 2048.44 S + VAT @@ -391,7 +408,9 @@ Invoice Note Description 2018-04-13 EUR + 2018-04-13 2018-04-13 @@ -425,8 +444,12 @@ [Seller address line 1] [Seller address line 2] + + DE @@ -448,11 +471,13 @@ 123456789 Amtsgericht […], Geschäftsführer: […], Sitz der Gesellschaft […], Aufsichtsratvorsitzender: […] + @@ -467,8 +492,12 @@ [Buyer address line 1] [Buyer address line 2] + + [Buyer address line 3] @@ -527,8 +556,12 @@ [Deliver to street] 4. OG + + Bayern DE @@ -541,6 +574,7 @@ + Bitte überweisen Sie bis zum 24.01.2015 auf das unten aufgeführte Konto. @@ -563,9 +598,6 @@ 0 0 - S 19 @@ -582,7 +614,9 @@ 2048.44 S + VAT From 398347681fc63445fc08823311b6f8e160219169 Mon Sep 17 00:00:00 2001 From: Barbara Dewein Date: Fri, 6 Sep 2024 14:45:12 +0200 Subject: [PATCH 15/16] delete file --- rules/unit-UBL-DE/UBL-IN_DE-R-000.xml | 706 -------------------------- 1 file changed, 706 deletions(-) delete mode 100644 rules/unit-UBL-DE/UBL-IN_DE-R-000.xml diff --git a/rules/unit-UBL-DE/UBL-IN_DE-R-000.xml b/rules/unit-UBL-DE/UBL-IN_DE-R-000.xml deleted file mode 100644 index eefd4810..00000000 --- a/rules/unit-UBL-DE/UBL-IN_DE-R-000.xml +++ /dev/null @@ -1,706 +0,0 @@ - - - - DE-R-0xx rules shall not fire for other countries - DE-R-001 - DE-R-002 - DE-R-003 - DE-R-004 - DE-R-005 - DE-R-006 - DE-R-007 - DE-R-008 - DE-R-009 - DE-R-010 - DE-R-011 - DE-R-014 - DE-R-015 - DE-R-016 - DE-R-017 - DE-R-018 - DE-R-019 - DE-R-020 - DE-R-022 - DE-R-023 - DE-R-024 - DE-R-025 - DE-R-026 - DE-R-027 - DE-R-028 - DE-R-030 - DE-R-031 - - - - DE-R-001 - DE-R-002 - DE-R-003 - DE-R-004 - DE-R-005 - DE-R-006 - DE-R-007 - DE-R-008 - DE-R-009 - DE-R-010 - DE-R-011 - DE-R-014 - DE-R-015 - DE-R-016 - DE-R-017 - DE-R-018 - DE-R-019 - DE-R-020 - DE-R-022 - DE-R-023 - DE-R-024 - DE-R-025 - DE-R-026 - DE-R-027 - DE-R-028 - DE-R-030 - DE-R-031 - - - - urn:cen.eu:en16931:2017#compliant#urn:fdc:peppol.eu:2017:poacc:billing:3.0 - urn:fdc:peppol.eu:2017:poacc:billing:01:1.0 - 1234567 - 2018-04-13 - 2018-04-13 - 380 - Invoice Note Description - 2018-04-13 - EUR - - - 2018-04-13 - 2018-04-13 - - - 65002278 - ABC123456789 - - - ANG987654321 - - - 0000000752 - - - 01_15_Anhang_01.pdf - Aufschlüsselung der einzelnen Leistungspositionen - - - PR12345678 - - - - 123456 - - 987654321 - - - [Seller name] - - - [Seller address line 1] - [Seller address line 2] - - - - SE - - - - - - VAT - - - - - - FC - - - - [Seller trading name] - 123456789 - Amtsgericht […], Geschäftsführer: […], Sitz der Gesellschaft […], Aufsichtsratvorsitzender: […] - - - - - - - 123456 - - 138 - - - [Buyer name] - - - [Buyer address line 1] - [Buyer address line 2] - - - - [Buyer address line 3] - - - DE - - - - DE12345ABC - - VAT - - - - [Buyer name] - 90000000-03083-12 - - - Tina Tester - 0800 123456 - tester@test.de - - - - - - 74 - - - [Payee name] - - - - - 2018-04-13 - - 68 - - [Deliver to street] - 4. OG - - - Bayern - - DE - - - - - - [Deliver to party name] - - - - - - Bitte überweisen Sie bis zum 24.01.2015 auf das unten aufgeführte Konto. - - - false - 102 - Fixed long term - 0 - 0 - 0 - - S - 19 - - VAT - - - - - - - 2048.44 - - 10781.25 - 2048.44 - - S - - - VAT - - - - - 0 - 0 - - E - 19 - a reason - - VAT - - - - - - - - 10781.25 - 10781.25 - 12829.69 - 0 - 0 - 0 - 0 - 12829.69 - - - - - 1 - Die letzte Lieferung im Rahmen des abgerechneten Abonnements erfolgt in 12/2016 Lieferung erfolgt / erfolgte direkt vom Verlag - 30 - 4743.75 - - 2018-04-13 - 2018-04-13 - - - 6171175.1 - - - Anforderungmanagament - Beratung - - 1034 - - - 0721-880X - - - S - 19 - - VAT - - - - - 158.125 - - - - 2 - 42 - 6037.5 - - Beratung - - S - 19 - - VAT - - - - - 143.75 - - - - - - - - - DE-R-001 - DE-R-002 - DE-R-003 - DE-R-004 - DE-R-005 - DE-R-006 - DE-R-007 - DE-R-008 - DE-R-009 - DE-R-010 - DE-R-011 - DE-R-014 - DE-R-015 - DE-R-016 - DE-R-017 - DE-R-018 - DE-R-019 - DE-R-020 - DE-R-022 - DE-R-023 - DE-R-024 - DE-R-025 - DE-R-026 - DE-R-027 - DE-R-028 - DE-R-030 - DE-R-031 - - - - urn:cen.eu:en16931:2017#compliant#urn:fdc:peppol.eu:2017:poacc:billing:3.0 - urn:fdc:peppol.eu:2017:poacc:billing:01:1.0 - 1234567 - 2018-04-13 - 2018-04-13 - 380 - Invoice Note Description - 2018-04-13 - EUR - - - 2018-04-13 - 2018-04-13 - - - 65002278 - ABC123456789 - - - ANG987654321 - - - 0000000752 - - - 01_15_Anhang_01.pdf - Aufschlüsselung der einzelnen Leistungspositionen - - - PR12345678 - - - - 123456 - - 987654321 - - - [Seller name] - - - [Seller address line 1] - [Seller address line 2] - - - - DE - - - - - - VAT - - - - - - FC - - - - [Seller trading name] - 123456789 - Amtsgericht […], Geschäftsführer: […], Sitz der Gesellschaft […], Aufsichtsratvorsitzender: […] - - - - - - - 123456 - - 138 - - - [Buyer name] - - - [Buyer address line 1] - [Buyer address line 2] - - - - [Buyer address line 3] - - - SE - - - - DE12345ABC - - VAT - - - - [Buyer name] - 90000000-03083-12 - - - Tina Tester - 0800 123456 - tester@test.de - - - - - - 74 - - - [Payee name] - - - - - 2018-04-13 - - 68 - - [Deliver to street] - 4. OG - - - Bayern - - DE - - - - - - [Deliver to party name] - - - - - - Bitte überweisen Sie bis zum 24.01.2015 auf das unten aufgeführte Konto. - - - false - 102 - Fixed long term - 0 - 0 - 0 - - S - 19 - - VAT - - - - - - - 2048.44 - - 10781.25 - 2048.44 - - S - - - VAT - - - - - 0 - 0 - - E - 19 - a reason - - VAT - - - - - - - - 10781.25 - 10781.25 - 12829.69 - 0 - 0 - 0 - 0 - 12829.69 - - - - - 1 - Die letzte Lieferung im Rahmen des abgerechneten Abonnements erfolgt in 12/2016 Lieferung erfolgt / erfolgte direkt vom Verlag - 30 - 4743.75 - - 2018-04-13 - 2018-04-13 - - - 6171175.1 - - - Anforderungmanagament - Beratung - - 1034 - - - 0721-880X - - - S - 19 - - VAT - - - - - 158.125 - - - - 2 - 42 - 6037.5 - - Beratung - - S - 19 - - VAT - - - - - 143.75 - - - - - - From 6e5e247ad176b8e7e1533107f0828ae6e375dacd Mon Sep 17 00:00:00 2001 From: Philip Helger Date: Tue, 10 Sep 2024 13:40:01 +0200 Subject: [PATCH 16/16] Re-added Description --- rules/unit-UBL-DE/UBL-IN_DE-R-020.xml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/rules/unit-UBL-DE/UBL-IN_DE-R-020.xml b/rules/unit-UBL-DE/UBL-IN_DE-R-020.xml index 633ab263..4d71e3d7 100644 --- a/rules/unit-UBL-DE/UBL-IN_DE-R-020.xml +++ b/rules/unit-UBL-DE/UBL-IN_DE-R-020.xml @@ -6,6 +6,7 @@ + DE-R-020 unit test DE-R-020 @@ -458,6 +459,7 @@ + DE-R-020 unit test DE-R-020