Fix the way we get variables
This commit is contained in:
parent
73b590f480
commit
e334b01ad4
1 changed files with 4 additions and 4 deletions
|
@ -1257,16 +1257,16 @@ class InvoiceDetailView(LoginRequiredMixin, DetailView):
|
||||||
cpu=context['vm']['cores'],
|
cpu=context['vm']['cores'],
|
||||||
ssd_size=context['vm']['disk_size'],
|
ssd_size=context['vm']['disk_size'],
|
||||||
memory=context['vm']['memory'],
|
memory=context['vm']['memory'],
|
||||||
pricing_name=(obj.vm_pricing.name
|
pricing_name=(obj.order.vm_pricing.name
|
||||||
if obj.vm_pricing else 'default'),
|
if obj.order.vm_pricing else 'default'),
|
||||||
vat_rate=(
|
vat_rate=(
|
||||||
user_country_vat_rate * 100
|
user_country_vat_rate * 100
|
||||||
if obj.vm_id > settings.FIRST_VM_ID_AFTER_EU_VAT
|
if obj.order.vm_id > settings.FIRST_VM_ID_AFTER_EU_VAT
|
||||||
else 7.7
|
else 7.7
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
context['vm']["after_eu_vat_intro"] = (
|
context['vm']["after_eu_vat_intro"] = (
|
||||||
True if obj.vm_id > settings.FIRST_VM_ID_AFTER_EU_VAT
|
True if obj.order.vm_id > settings.FIRST_VM_ID_AFTER_EU_VAT
|
||||||
else False
|
else False
|
||||||
)
|
)
|
||||||
context['vm']["price"] = price
|
context['vm']["price"] = price
|
||||||
|
|
Loading…
Reference in a new issue