Add reverse charge flag to invoices

This commit is contained in:
Raphael Michel
2018-10-30 10:57:18 +01:00
parent a928fbfafe
commit a480ca1142
3 changed files with 30 additions and 1 deletions

View File

@@ -93,6 +93,7 @@ class Invoice(models.Model):
locale = models.CharField(max_length=50, default='en')
introductory_text = models.TextField(blank=True)
additional_text = models.TextField(blank=True)
reverse_charge = models.BooleanField(default=False)
payment_provider_text = models.TextField(blank=True)
footer_text = models.TextField(blank=True)
foreign_currency_display = models.CharField(max_length=50, null=True, blank=True)