mirror of
https://github.com/OCA/bank-payment.git
synced 2025-02-02 10:37:31 +02:00
24 lines
740 B
XML
24 lines
740 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!--
|
|
Copyright (C) 2013-2016 Akretion (http://www.akretion.com)
|
|
@author: Alexis de Lattre <alexis.delattre@akretion.com>
|
|
The licence is in the file __openerp__.py
|
|
-->
|
|
<openerp>
|
|
<data>
|
|
|
|
<record id="account_payment_line_form" model="ir.ui.view">
|
|
<field name="name">pain.base.account.payment.line</field>
|
|
<field name="model">account.payment.line</field>
|
|
<field name="inherit_id" ref="account_payment_order.account_payment_line_form"/>
|
|
<field name="arch" type="xml">
|
|
<field name="communication_type" position="before">
|
|
<field name="priority"/>
|
|
<field name="local_instrument" invisible="1"/>
|
|
</field>
|
|
</field>
|
|
</record>
|
|
|
|
</data>
|
|
</openerp>
|