Rearrange code
This commit is contained in:
parent
af1690b846
commit
618d0004f2
1 changed files with 8 additions and 9 deletions
|
@ -454,9 +454,8 @@ class PaymentOrderView(FormView):
|
|||
'view_usercarddetail', user_card_detail
|
||||
):
|
||||
raise UserCardDetail.DoesNotExist(
|
||||
_(
|
||||
"{user} does not have permission to access the "
|
||||
"card").format(user=request.user.email)
|
||||
_("{user} does not have permission to access"
|
||||
" the card").format(user=request.user.email)
|
||||
)
|
||||
except UserCardDetail.DoesNotExist as e:
|
||||
ex = str(e)
|
||||
|
@ -496,9 +495,9 @@ class PaymentOrderView(FormView):
|
|||
)
|
||||
)
|
||||
customer = StripeCustomer.create_stripe_api_customer(
|
||||
email=user_email,
|
||||
token=token,
|
||||
customer_name=user_name)
|
||||
email=user_email, token=token,
|
||||
customer_name=user_name
|
||||
)
|
||||
except CustomUser.DoesNotExist:
|
||||
logger.debug(
|
||||
("StripeCustomer does not exist for {email}."
|
||||
|
@ -597,8 +596,8 @@ class OrderConfirmationView(DetailView):
|
|||
'msg_title': str(_('Error.')),
|
||||
'msg_body': str(
|
||||
_('There was a payment related error.'
|
||||
' On close of this popup, you will be redirected back to'
|
||||
' the payment page.'))
|
||||
' On close of this popup, you will be redirected '
|
||||
'back to the payment page.'))
|
||||
}
|
||||
return HttpResponse(json.dumps(response),
|
||||
content_type="application/json")
|
||||
|
|
Loading…
Reference in a new issue