Fix obtaining correct CustomUSer
This commit is contained in:
parent
36b091700e
commit
94a81fc976
1 changed files with 1 additions and 1 deletions
|
@ -89,7 +89,7 @@ class Command(BaseCommand):
|
||||||
stripe_customer_id = subscription.get("customer", "")
|
stripe_customer_id = subscription.get("customer", "")
|
||||||
vat_rate = subscription.get("tax_percent", "")
|
vat_rate = subscription.get("tax_percent", "")
|
||||||
c_user = CustomUser.objects.get(
|
c_user = CustomUser.objects.get(
|
||||||
id=StripeCustomer.objects.filter(stripe_id=stripe_customer_id)[0].id)
|
id=StripeCustomer.objects.filter(stripe_id=stripe_customer_id)[0].user.id)
|
||||||
customer_name = c_user.name.encode('utf-8')
|
customer_name = c_user.name.encode('utf-8')
|
||||||
customer_email = c_user.email
|
customer_email = c_user.email
|
||||||
items = subscription.get("items", {}).get("data", [])
|
items = subscription.get("items", {}).get("data", [])
|
||||||
|
|
Loading…
Reference in a new issue