From cd5c5bbd832f5e4345ffa8bb0809857590af4ec8 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Wed, 28 Jan 2026 18:30:29 +0000 Subject: [PATCH 1/2] Initial plan From 5775dd32b62878aaaa87d4b1205187cb2f141f3d Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Wed, 28 Jan 2026 18:32:42 +0000 Subject: [PATCH 2/2] Disable VAT Reporting Date in PEPPOL tests to fix CZL validation error Co-authored-by: Groenbech96 <17690329+Groenbech96@users.noreply.github.com> --- .../W1/PEPPOL/Test/src/PEPPOLBISBillingTests.Codeunit.al | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/Apps/W1/PEPPOL/Test/src/PEPPOLBISBillingTests.Codeunit.al b/src/Apps/W1/PEPPOL/Test/src/PEPPOLBISBillingTests.Codeunit.al index 0d16246cbb..2315700c9e 100644 --- a/src/Apps/W1/PEPPOL/Test/src/PEPPOLBISBillingTests.Codeunit.al +++ b/src/Apps/W1/PEPPOL/Test/src/PEPPOLBISBillingTests.Codeunit.al @@ -1544,6 +1544,7 @@ codeunit 139236 "PEPPOL BIS BillingTests" local procedure Initialize() var CompanyInfo: Record "Company Information"; + GLSetup: Record "General Ledger Setup"; begin LibrarySetupStorage.Restore(); LibraryTestInitialize.OnTestInitialize(Codeunit::"PEPPOL BIS BillingTests"); @@ -1568,7 +1569,9 @@ codeunit 139236 "PEPPOL BIS BillingTests" CompanyInfo.Validate("Use GLN in Electronic Document", true); CompanyInfo.Modify(true); - + GLSetup.GetRecordOnce(); + GLSetup."VAT Reporting Date Usage" := GLSetup."VAT Reporting Date Usage"::Disabled; + GLSetup.Modify(false); AddCompPEPPOLIdentifier();