rma_bjr
rma_bjr

Reputation: 45

Remove currency symbol odoo 11

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="{&quot;widget&quot;: &quot;False&quot;}"/>

Can you help me to display the price as 1'542 without currency

Thank you

Upvotes: 1

Views: 2540

Answers (3)

Lgomes_dev
Lgomes_dev

Reputation: 159

Just write

<span t-field="l.price_subtotal" widget="monetary"/>

Upvotes: 0

Jack Sparrow
Jack Sparrow

Reputation: 666

You can use this <span t-esc="float(object.field_name)"/>

Upvotes: 0

Vishnu VaNnErI
Vishnu VaNnErI

Reputation: 931

Please try these

<span t-esc="'{:,.2f}'.format(l.price_subtotal)" >

Upvotes: 1

Related Questions