mirror of
https://github.com/OCA/bank-payment.git
synced 2025-02-02 10:37:31 +02:00
The field 'sepa' on account.payment.order is only display for SEPA payment methods. If the option "show warning if not SEPA" is enabled on the payment method, a warning banner is now displayed on payment orders with a SEPA payment method which are not SEPA.
13 lines
544 B
XML
13 lines
544 B
XML
<?xml version="1.0" encoding="utf-8" ?>
|
|
<odoo noupdate="1">
|
|
<record id="sepa_direct_debit" model="account.payment.method">
|
|
<field name="name">SEPA Direct Debit for customers</field>
|
|
<field name="code">sepa_direct_debit</field>
|
|
<field name="payment_type">inbound</field>
|
|
<field name="bank_account_required" eval="False" />
|
|
<field name="mandate_required" eval="True" />
|
|
<field name="pain_version">pain.008.001.02</field>
|
|
<field name="warn_not_sepa" eval="True" />
|
|
</record>
|
|
</odoo>
|