From b1dd9988ce65d13c6b352c3bb12eb56807d2a7e5 Mon Sep 17 00:00:00 2001 From: PCoder Date: Wed, 23 Dec 2020 12:03:17 +0530 Subject: [PATCH] Add missing subscription_id param --- datacenterlight/views.py | 1 + 1 file changed, 1 insertion(+) diff --git a/datacenterlight/views.py b/datacenterlight/views.py index f8b9a097..348ad860 100644 --- a/datacenterlight/views.py +++ b/datacenterlight/views.py @@ -930,6 +930,7 @@ class OrderConfirmationView(DetailView, FormView): # Store params so that they can be retrieved later IncompleteSubscriptions.objects.create( + subscription_id=stripe_subscription_obj.id, subscription_status=subscription_status, name=user.get('name'), email=user.get('email'),