mirror of
https://github.com/pretix/pretix.git
synced 2026-05-08 15:44:02 +00:00
Show tax column in invoices if reverse charge is active
This commit is contained in:
@@ -510,7 +510,7 @@ class ClassicInvoiceRenderer(BaseReportlabInvoiceRenderer):
|
||||
return story
|
||||
|
||||
def _get_story(self, doc):
|
||||
has_taxes = any(il.tax_value for il in self.invoice.lines.all())
|
||||
has_taxes = any(il.tax_value for il in self.invoice.lines.all()) or self.invoice.reverse_charge
|
||||
|
||||
story = [
|
||||
NextPageTemplate('FirstPage'),
|
||||
|
||||
Reference in New Issue
Block a user