Skip to content

Commit 4019506

Browse files
authored
Corrects the attribute order of ApplicableTradeTax (pretix#19)
* aligns the attribute order of the ApplicableTradeTax class to the TradeTaxType in FACTUR-X_EXTENDED_urn_un_unece_uncefact_data_standard_ReusableAggregateBusinessInformationEntity_100.xsd to fix pretix#18 * adds test case * fix formatting * sync readme with test_minimal
1 parent 75617a8 commit 4019506

File tree

3 files changed

+11
-9
lines changed

3 files changed

+11
-9
lines changed

README.rst

+2-1
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,8 @@ Generating::
8484
trade_tax.calculated_amount = Decimal("0.00")
8585
trade_tax.basis_amount = Decimal("999.00")
8686
trade_tax.type_code = "VAT"
87-
trade_tax.category_code = "E"
87+
trade_tax.category_code = "AE"
88+
trade_tax.exemption_reason_code = 'VATEX-EU-AE'
8889
trade_tax.rate_applicable_percent = Decimal("0.00")
8990
doc.trade.settlement.trade_tax.add(trade_tax)
9091

drafthorse/models/accounting.py

+7-7
Original file line numberDiff line numberDiff line change
@@ -83,13 +83,6 @@ class ApplicableTradeTax(Element):
8383
profile=COMFORT,
8484
_d="Grund der Steuerbefreiung (Freitext)",
8585
)
86-
exemption_reason_code = StringField(
87-
NS_RAM,
88-
"ExemptionReasonCode",
89-
required=False,
90-
profile=EXTENDED,
91-
_d="Grund der Steuerbefreiung (Code)",
92-
)
9386
tax_point_date = DateTimeField(
9487
NS_RAM, "TaxPointDate", required=False, profile=COMFORT
9588
)
@@ -127,6 +120,13 @@ class ApplicableTradeTax(Element):
127120
profile=COMFORT,
128121
_d="Steuerkategorie (Wert)",
129122
)
123+
exemption_reason_code = StringField(
124+
NS_RAM,
125+
"ExemptionReasonCode",
126+
required=False,
127+
profile=EXTENDED,
128+
_d="Grund der Steuerbefreiung (Code)",
129+
)
130130
rate_applicable_percent = DecimalField(
131131
NS_RAM, "RateApplicablePercent", required=True, profile=BASIC
132132
)

tests/test_mininal.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,8 @@ def test_readme_construction_example():
5454
trade_tax.calculated_amount = Decimal("0.00")
5555
trade_tax.basis_amount = Decimal("999.00")
5656
trade_tax.type_code = "VAT"
57-
trade_tax.category_code = "E"
57+
trade_tax.category_code = "AE"
58+
trade_tax.exemption_reason_code = "VATEX-EU-AE"
5859
trade_tax.rate_applicable_percent = Decimal("0.00")
5960
doc.trade.settlement.trade_tax.add(trade_tax)
6061

0 commit comments

Comments
 (0)