Save stripe tax id

This commit is contained in:
PCoder 2019-12-25 18:44:43 +05:30
commit 8996254212
2 changed files with 26 additions and 0 deletions

View file

@ -14,6 +14,7 @@ class BaseBillingAddress(models.Model):
postal_code = models.CharField(max_length=50)
country = CountryField()
vat_number = models.CharField(max_length=100, default="", blank=True)
stripe_tax_id = models.DateTimeField(blank=True, null=True)
vat_number_validated_on = models.DateTimeField(blank=True, null=True)
class Meta: