Add missing param

This commit is contained in:
PCoder 2019-12-26 14:21:18 +05:30
parent 9aff248d31
commit d8c03a4364
1 changed files with 3 additions and 1 deletions

View File

@ -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",