summaryrefslogtreecommitdiff
path: root/tests/peppol_write_tests.cpp
diff options
context:
space:
mode:
authorAldrik Ramaekers <aldrik@mailbox.org>2026-01-03 11:03:50 +0100
committerAldrik Ramaekers <aldrik@mailbox.org>2026-01-03 11:03:50 +0100
commit83a9739b3aff75cf767db687bd531fa5283e0e72 (patch)
treeadf130cb7728a4358062a040f6322ecc236d0e6b /tests/peppol_write_tests.cpp
parent2218ef68056ebc5a3a416e2dd7e8e020fba60a4f (diff)
move invoice status to invoice extras struct. implement r/w
Diffstat (limited to 'tests/peppol_write_tests.cpp')
-rw-r--r--tests/peppol_write_tests.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/tests/peppol_write_tests.cpp b/tests/peppol_write_tests.cpp
index 35cf940..a967477 100644
--- a/tests/peppol_write_tests.cpp
+++ b/tests/peppol_write_tests.cpp
@@ -12,7 +12,6 @@ TEST _peppol_write_nl2nl_b2b(void)
inv.supplier = _create_nl_business();
inv.customer = _create_nl_business();
inv.is_outgoing = 1;
- inv.status = invoice_status::INVOICE_CONCEPT;
inv.issued_at = time(NULL);
inv.delivered_at = inv.issued_at;
inv.expires_at = inv.issued_at + 1000;
@@ -40,7 +39,6 @@ TEST _peppol_write_nl2nl_b2c(void)
inv.supplier = _create_nl_business();
inv.customer = _create_nl_consumer();
inv.is_outgoing = 1;
- inv.status = invoice_status::INVOICE_CONCEPT;
inv.issued_at = time(NULL);
inv.delivered_at = inv.issued_at;
inv.expires_at = inv.issued_at + 1000;