mirror of
https://github.com/OCA/bank-payment.git
synced 2025-02-02 10:37:31 +02:00
25 lines
1.0 KiB
XML
25 lines
1.0 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<openerp>
|
|
<data>
|
|
<!-- Unset readonly state of country_id for ordinary account.
|
|
Leaving it will make it impossible to use bank accounts with
|
|
addresses outside the companies country.
|
|
Ratio: one can have bank accounts in foreign banks. Foreign
|
|
addresses not automatically involve international banking.
|
|
-->
|
|
<record id="base.bank_normal_field_contry" model="res.partner.bank.type.field">
|
|
<field name="name">country_id</field>
|
|
<field name="bank_type_id" ref="base.bank_normal"/>
|
|
<field eval="False" name="required"/>
|
|
<field eval="False" name="readonly"/>
|
|
</record>
|
|
<!--
|
|
BIC is not legally required
|
|
See https://bugs.launchpad.net/bugs/933472
|
|
-->
|
|
<record id="base_iban.bank_swift_field" model="res.partner.bank.type.field">
|
|
<field eval="False" name="required"/>
|
|
</record>
|
|
</data>
|
|
</openerp>
|