Generate bill PDFs from /my/bill

This commit is contained in:
fnux 2020-05-07 15:38:49 +02:00
commit ae2bad5754
6 changed files with 96 additions and 115 deletions

View file

@ -444,6 +444,7 @@ class BillingAddress(models.Model):
uuid = models.UUIDField(primary_key=True, default=uuid.uuid4, editable=False)
owner = models.ForeignKey(get_user_model(), on_delete=models.CASCADE)
organization = models.CharField(max_length=100)
name = models.CharField(max_length=100)
street = models.CharField(max_length=100)
city = models.CharField(max_length=50)