mirror of
https://github.com/pretix/pretix.git
synced 2026-08-22 12:42:00 +00:00
Fix determination of VAT ID validation
This commit is contained in:
@@ -317,7 +317,7 @@ class QuestionsStep(QuestionsViewMixin, CartMixin, TemplateFlowStep):
|
|||||||
|
|
||||||
@cached_property
|
@cached_property
|
||||||
def eu_reverse_charge_relevant(self):
|
def eu_reverse_charge_relevant(self):
|
||||||
return any([p.item.tax_rule and p.item.tax_rule.eu_reverse_charge
|
return any([p.item.tax_rule and (p.item.tax_rule.eu_reverse_charge or p.item.tax_rule.custom_rules)
|
||||||
for p in self.positions])
|
for p in self.positions])
|
||||||
|
|
||||||
@cached_property
|
@cached_property
|
||||||
|
|||||||
Reference in New Issue
Block a user