diff --git a/Changelog b/Changelog index 6d1b57d2..27802eb6 100644 --- a/Changelog +++ b/Changelog @@ -1,3 +1,5 @@ +2.3.1: 2018-10-17 + * bugfix: [hosting, dcl] Show VAT percent rounded to 2 decimal places in the order confirmation page (PR #673) 2.3: 2018-10-08 * #5690: Generic payment page - allow admin to add a onetime/monthly product and the frontend for user to pay for this product (PR #666) 2.2.2: 2018-09-28 diff --git a/utils/hosting_utils.py b/utils/hosting_utils.py index 8354f485..ec97a320 100644 --- a/utils/hosting_utils.py +++ b/utils/hosting_utils.py @@ -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):