0

在 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>

但不确定如何做到这一点。知道如何做到这一点吗?

4

1 回答 1

0

无需在 javascript 或代码中进行编辑。只需将财务经理组交给管理员,然后在Invoicing > Configuration > Miscellaneous > Currencies. 然后选择您的货币记录。在这里你可以看到SymbolSymbol Position。更改symbol positionbefore amount

于 2013-10-04T05:02:35.443 回答