在 openerp 中,货币价值(行项目的总和)如下所示
是否可以在任何地方显示像RM 100一样。xml中的实际行如下
<field name="amount_untaxed" widget='monetary' options="{'currency_field': 'currency_id'}" />
我得到了在 web/xml/base.xml 下编辑它的线索
<t t-name="FieldMonetary" t-extend="FieldChar">
<t t-jquery="t:first" t-operation="before">
<t t-if="widget.get('currency_info') and widget.get('currency_info').position === 'before'">
<t t-esc="widget.get('currency_info').symbol"/>
</t>
</t>
<t t-jquery="t:last" t-operation="after">
<t t-if="widget.get('currency_info') and widget.get('currency_info').position === 'after'">
<t t-esc="widget.get('currency_info').symbol"/>
</t>
</t>
</t>
但不确定如何做到这一点。知道如何做到这一点吗?