Make vat_rate Decimal before Decimal operations

This commit is contained in:
PCoder 2019-12-07 19:38:33 +05:30
parent 3b0e479a70
commit b33271ce7d
1 changed files with 2 additions and 2 deletions

View File

@ -104,8 +104,8 @@ def get_vm_price_for_given_vat(cpu, memory, ssd_size, hdd_size=0,
(decimal.Decimal(hdd_size) * pricing.hdd_unit_price)
)
vat = price * vat_rate * decimal.Decimal(0.01)
vat_percent = pricing.vat_percentage
vat = price * decimal.Decimal(vat_rate) * decimal.Decimal(0.01)
vat_percent = vat_rate
cents = decimal.Decimal('.01')
price = price.quantize(cents, decimal.ROUND_HALF_UP)