24 lines
723 B
XML
24 lines
723 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!--
|
|
Copyright (C) 2015 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="view_payment_order_form" model="ir.ui.view">
|
|
<field name="name">hide.communication2.on.payment.line.form</field>
|
|
<field name="model">payment.order</field>
|
|
<field name="inherit_id" ref="account_payment.view_payment_order_form"/>
|
|
<field name="arch" type="xml">
|
|
<xpath expr="//field[@name='line_ids']/form//field[@name='ml_inv_ref']" position="after">
|
|
<field name="force_maturity_date"/>
|
|
</xpath>
|
|
</field>
|
|
</record>
|
|
|
|
</data>
|
|
</openerp>
|