If I have some calculated value and I want to display it on report.
For example
<t t-set="price_unit" t-value="get_price_unit(l)"/>
<span t-esc="price_unit"/>
The only thing I could use in the previous versions was formatLang, but that is a webkit method and Odoo 10 doesn't have that anymore. Is there any other way to format the number and it's thousands separator in qweb?