Odoo-货币符号未显示在qWeb中

时间:2018-10-30 11:55:11

标签: odoo-9 qweb

我有一个自定义报告,货币符号未显示。 这可能有什么问题:

<span t-esc="grand_total" t-options="{'widget': 'monetary', 'display_currency': res_company.currency_id}"/>

1 个答案:

答案 0 :(得分:0)

您应该使用发票对象中的货币。将t-esc更改为t字段。仅添加t-field =“ grand_total”会看到什么?

<span t-field="grand_total" t-options="{'widget': 'monetary', 'display_currency': o.currency_id}"/>