在看板视图odoo 8的货币符号

时间:2016-03-03 13:04:47

标签: currency symbols odoo-8 kanban

我需要在看板视图中添加公司货币符号。

<field name="company_currency_id" invisible="0" />
<field name="total_earnings" attrs="{'invisible':[('type_dashboard','!=','Total Earnings')]}" widget="monetary" options="{'currency_field': 'company_currency_id'}"

请帮助

1 个答案:

答案 0 :(得分:0)

在你的情况下,基本上是currency_id,它总是公司相关领域的一部分。

始终是company.currency模型

的一部分

首先在看板视图文件中添加该字段,并将其设为不可见 并使用widget属性添加了您的价格字段名称。

<field name="currency_id" invisible="1" />
<field name="amount_total" nolabel="1"  widget="monetary" options="{'currency_field': 'currency_id'}"/>

根据您在每种货币的货币方向配置中的定义,您可以轻松获得字段之前和之前的货币字段。 amount_total是我们的价格字段,我们将轻松获得货币配置字段。

我希望我的回答对您有所帮助:)。