Round VAT percent to 2 decimal places

This commit is contained in:
PCoder 2018-10-17 07:27:28 +02:00
parent 27ee5ca5ac
commit 8929a26714
1 changed files with 1 additions and 1 deletions

View File

@ -130,7 +130,7 @@ def get_vm_price_with_vat(cpu, memory, ssd_size, hdd_size=0,
'amount': round(float(pricing.discount_amount), 2)
}
return (round(float(price), 2), round(float(vat), 2),
round(float(vat_percent)), discount)
round(float(vat_percent), 2), discount)
def ping_ok(host_ipv6):