trytond-party_bank_validation/bank.xml

25 lines
916 B
XML
Executable File

<?xml version="1.0"?>
<!-- This file is part party_bank_validation module for Tryton.
The COPYRIGHT file at the top level of this repository contains the full copyright notices and license terms. -->
<tryton>
<data>
<record model="ir.ui.view" id="bank_account_view_form">
<field name="model">bank.account</field>
<field name="type">form</field>
<field name="inherit" ref="party_bank.bank_account_view_form"/>
<field name="arch" type="xml">
<![CDATA[
<data>
<xpath
expr="/form/label[@name='code']"
position="before">
<label name="bank_country"/>
<field name="bank_country"/>
</xpath>
</data>
]]>
</field>
</record>
</data>
</tryton>