Skip to content
Snippets Groups Projects
Verified Commit b27f3dee authored by Nik | Klampfradler's avatar Nik | Klampfradler
Browse files

Let purchased items contain SKUs

parent aea7001c
No related branches found
No related tags found
No related merge requests found
......@@ -313,7 +313,7 @@ class EventRegistration(ExtensibleModel):
quantity=1,
price=Decimal(self.event.cost / 1.07),
currency="EUR",
sku="",
sku="EVENT",
tax_rate=7,
)
......@@ -324,7 +324,7 @@ class EventRegistration(ExtensibleModel):
quantity=1,
price=self.donation,
currency="EUR",
sku="",
sku="DONAT",
tax_rate=0,
)
......@@ -335,7 +335,7 @@ class EventRegistration(ExtensibleModel):
quantity=1,
price=-1 * self.voucher.discount * (self.event.cost / 1.07) / 100,
currency="EUR",
sku="",
sku="DISCO",
tax_rate=7,
)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment