As far as i can tell in 0.7.5 (also from code) VAT from configuration dialog is added over value of template:
price = round(float(template_value) * (1 + self.vat), 5)
This would mean the Modifyer Template example is wrong, should just be:
{{ current_price + somecost + othercost | float(0) }}
As far as i can tell in 0.7.5 (also from code) VAT from configuration dialog is added over value of template:
price = round(float(template_value) * (1 + self.vat), 5)This would mean the Modifyer Template example is wrong, should just be:
{{ current_price + somecost + othercost | float(0) }}