Skip to content

Commit

Permalink
Move reverse charge info text upward
Browse files Browse the repository at this point in the history
  • Loading branch information
bobapple authored Sep 9, 2019
1 parent 712be12 commit 7d6fd8c
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 7d6fd8c

Please sign in to comment.