Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions services/platform/apps/billing/invoice_models.py
Original file line number Diff line number Diff line change
Expand Up @@ -134,6 +134,7 @@ class Invoice(models.Model):
# Billing address snapshot (immutable once issued)
bill_to_name = models.CharField(max_length=255, default="")
bill_to_tax_id = models.CharField(max_length=50, blank=True)
bill_to_registration_number = models.CharField(max_length=50, blank=True) # Nr. Reg. Com. / J number
bill_to_email = models.EmailField(blank=True)
bill_to_address1 = models.CharField(max_length=255, blank=True)
bill_to_address2 = models.CharField(max_length=255, blank=True)
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
("billing", "0024_backfill_refunds_from_meta"),
]

operations = [
migrations.AddField(
model_name="invoice",
name="bill_to_registration_number",
field=models.CharField(blank=True, max_length=50),
),
migrations.AddField(
model_name="proformainvoice",
name="bill_to_registration_number",
field=models.CharField(blank=True, max_length=50),
),
]
Loading
Loading