From d8c03a4364407ba50966b8bf7d83d494dd84bfff Mon Sep 17 00:00:00 2001 From: PCoder Date: Thu, 26 Dec 2019 14:21:18 +0530 Subject: [PATCH] Add missing param --- datacenterlight/utils.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/datacenterlight/utils.py b/datacenterlight/utils.py index 4b36870a..f23d91bc 100644 --- a/datacenterlight/utils.py +++ b/datacenterlight/utils.py @@ -183,7 +183,9 @@ def validate_vat_number(stripe_customer_id, billing_address_id, else: tax_id_obj = create_tax_id( stripe_customer_id, billing_address_id, - "ch_vat" if billing_address.country.lower() == "ch" else "eu_vat") + "ch_vat" if billing_address.country.lower() == "ch" else "eu_vat", + is_user_ba=is_user_ba + ) else: return { "status": "invalid billing address",