Skip to content

Commit

Permalink
Merge pull request #4 from NETWAYS/move-rc-info-text
Browse files Browse the repository at this point in the history
Move reverse charge info text upward
  • Loading branch information
Michael Friedrich authored Sep 12, 2019
2 parents 712be12 + 7d6fd8c commit f2049bd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pretix_invoice_net/invoice.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ def _on_first_page(self, canvas: Canvas, doc):
vatIdFooterNL = "Reverse Charge: BTW Verlegd naar %s According to Art. 12. 3 WOB" % (vatId)

i += 1
canvas.drawCentredString(self.pagesize[0] / 2, 25 + (3.5 * i) * mm, vatIdFooterNL);
canvas.drawCentredString(self.pagesize[0] / 2, 40 + (3.5 * i) * mm, vatIdFooterNL);
# DEBUG
#i += 1
#canvas.drawCentredString(self.pagesize[0] / 2, 25 + (3.5 * i) * mm, "DEBUG: %s" % (vatId));
Expand Down

0 comments on commit f2049bd

Please sign in to comment.