我有一个自定义报告,货币符号未显示。 这可能有什么问题:
<span t-esc="grand_total" t-options="{'widget': 'monetary', 'display_currency': res_company.currency_id}"/>
答案 0 :(得分:0)
您应该使用发票对象中的货币。将t-esc更改为t字段。仅添加t-field =“ grand_total”会看到什么?
<span t-field="grand_total" t-options="{'widget': 'monetary', 'display_currency': o.currency_id}"/>