Rename variable: amount_to_be_charged -> price

This commit is contained in:
PCoder 2018-04-16 01:31:16 +02:00
parent d0276f22c1
commit 4148eff03e
1 changed files with 3 additions and 3 deletions

View File

@ -158,7 +158,7 @@ class IndexView(CreateView):
) )
return HttpResponseRedirect(referer_url + "#order_form") return HttpResponseRedirect(referer_url + "#order_form")
amount_to_be_charged, vat = get_vm_price_with_vat( price, vat = get_vm_price_with_vat(
cpu=cores, cpu=cores,
memory=memory, memory=memory,
disk_size=storage, disk_size=storage,
@ -168,9 +168,9 @@ class IndexView(CreateView):
'cpu': cores, 'cpu': cores,
'memory': memory, 'memory': memory,
'disk_size': storage, 'disk_size': storage,
'price': amount_to_be_charged, 'price': price,
'vat': vat, 'vat': vat,
'total_price': amount_to_be_charged + vat, 'total_price': price + vat,
'pricing_name': vm_pricing_name 'pricing_name': vm_pricing_name
} }
request.session['specs'] = specs request.session['specs'] = specs