Fix bug: change arg name

This commit is contained in:
PCoder 2019-11-15 12:23:44 +05:30
parent 44a20a5029
commit 76c2b9d16c

View file

@ -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'