我尝试在发票报表中打印发票行。 为了
<span t-field="l.price_subtotal" />
和
<span t-esc="round(l.price_total, 2)"/>
有一个输出:&#34; 111.11 $&#34; 但我需要没有标志的价格线。
如果我做的话
{{1}}
它有效,是的,但我丢失了货币格式
有没有办法告诉货币小部件它不应该显示货币?
&#34; display_currency&#34;:&#34; False&#34;没有工作(
货币小部件代码在哪里?我无法在源文件中找到它(
答案 0 :(得分:3)
尝试此操作以从qweb中删除货币符号。 使用currency formatngng
<span t-esc="'{:,.2f}'.format(doc.price_subtotal)" >
OR 这将打印而不进行货币格式化
<span t-field="doc.price_subtotal" t-field-options="{'widget':'False'}"/>