Files
account-reconcile/bank_statement_foreign_currency/views/account_view.xml
2019-05-13 15:53:38 +02:00

19 lines
868 B
XML

<?xml version="1.0" encoding="utf-8"?>
<odoo>
<record id="view_bank_statement_form" model="ir.ui.view">
<field name="name">account.bank.statement.form</field>
<field name="model">account.bank.statement</field>
<field name="inherit_id" ref="account.view_bank_statement_form"/>
<field name="arch" type="xml">
<xpath expr="//tree/field[@name='amount_currency']" position="attributes">
<attribute name="invisible">0</attribute>
<attribute name="groups">base.group_multi_currency</attribute>
</xpath>
<xpath expr="//tree/field[@name='currency_id']" position="attributes">
<attribute name="invisible">0</attribute>
<attribute name="groups">base.group_multi_currency</attribute>
</xpath>
</field>
</record>
</odoo>