mirror of
https://github.com/OCA/bank-payment.git
synced 2025-02-02 10:37:31 +02:00
There's already a field in the payment mode called 'note' that is printed on the invoices, so there's no need of another field for that purpose. This field is added by account_banking_payment_export
21 lines
620 B
XML
21 lines
620 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<openerp>
|
|
<data>
|
|
|
|
|
|
<record id="view_payment_mode_form" model="ir.ui.view">
|
|
<field name="name">account_payment_partner.payment.mode.form</field>
|
|
<field name="model">payment.mode</field>
|
|
<field name="inherit_id" ref="account_banking_payment_export.view_payment_mode_form_inherit"/>
|
|
<field name="arch" type="xml">
|
|
<group name="payment_order_create_defaults" position="inside">
|
|
<field name="default_payment_mode"
|
|
attrs="{'invisible': [('default_invoice', '=', False)]}"/>
|
|
</group>
|
|
</field>
|
|
</record>
|
|
|
|
|
|
</data>
|
|
</openerp>
|