From 7eff6fc92c6b3dd3223ad24cdb5a6c73d0ac1b4d Mon Sep 17 00:00:00 2001 From: PCoder Date: Thu, 26 Dec 2019 13:52:14 +0530 Subject: [PATCH] Use correct field --- hosting/views.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hosting/views.py b/hosting/views.py index 6520a006..e88e0f2a 100644 --- a/hosting/views.py +++ b/hosting/views.py @@ -630,7 +630,7 @@ class SettingsView(LoginRequiredMixin, FormView): data=billing_address_data) billing_address = billing_address_user_form.save() billing_address.stripe_tax_id = '' - billing_address.vat_validated_on = None + billing_address.vat_number_validated_on = None billing_address.save() vat_number = billing_address_user_form.cleaned_data.get( 'vat_number').strip()