Reputation: 45
I changed thousands separator to ' instead of ,. Now when I try to remove the currency symbol, the thousand separator also be removed.
I have tried those code:
<span t-field="l.price_subtotal" t-field-options="{'widget':'False'}"/>
and
<span t-field="l.price_subtotal"
t-field-options="{"widget": "False"}"/>
Can you help me to display the price as 1'542 without currency
Thank you
Upvotes: 1
Views: 2540
Reputation: 931
Please try these
<span t-esc="'{:,.2f}'.format(l.price_subtotal)" >
Upvotes: 1