Fix bug: change arg name
This commit is contained in:
parent
44a20a5029
commit
76c2b9d16c
1 changed files with 2 additions and 2 deletions
|
@ -417,8 +417,8 @@ class PaymentOrderView(FormView):
|
||||||
gp_details = {
|
gp_details = {
|
||||||
"product_name": product.product_name,
|
"product_name": product.product_name,
|
||||||
"amount": product.get_actual_price(
|
"amount": product.get_actual_price(
|
||||||
explicit_vat=get_vat_rate_for_country(
|
vat_rate=get_vat_rate_for_country(
|
||||||
address_form["country"])
|
address_form.cleaned_data["country"])
|
||||||
),
|
),
|
||||||
"recurring": generic_payment_form.cleaned_data.get(
|
"recurring": generic_payment_form.cleaned_data.get(
|
||||||
'recurring'
|
'recurring'
|
||||||
|
|
Loading…
Reference in a new issue