I try to print invoice lines in invoice report. for
<span t-field="l.price_subtotal" t-options='{"widget": "monetary", "display_currency": o.currency_id}'/>
and for
<span t-field="l.price_subtotal" />
there is one output: "111.11 $" But I need in lines price without sign.
If I make something like
<span t-esc="round(l.price_total, 2)"/>
it works, yes, but I lose currency formatting
Is there a way to tell monetary widget it shouldn't show currency?
"display_currency": "False" doesn't work (
Where is monetary widget code? I can't find it in source files (