mirror of
https://github.com/OCA/bank-payment.git
synced 2025-02-02 10:37:31 +02:00
16 lines
475 B
XML
16 lines
475 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<openerp>
|
|
<data>
|
|
|
|
<!-- Simplify template for IBAN bank name. Bank itself is part of IBAN
|
|
and BIC is no longer required.
|
|
Function write trick to handle noupdate. -->
|
|
<function model="res.partner.bank.type" name="write">
|
|
<value eval="[ref('base_iban.bank_iban')]" />
|
|
<value eval="{'format_layout': 'IBAN %(acc_number)s'}" />
|
|
</function>
|
|
|
|
</data>
|
|
</openerp>
|
|
|