Add the transaction ref field to the form view of the move lines

This commit is contained in:
Guewen Baconnier
2014-10-09 10:17:53 +02:00
parent 977bb3c7cf
commit d755a24b45
2 changed files with 17 additions and 1 deletions

View File

@@ -44,7 +44,8 @@
'website': 'http://www.openerp.com',
'data': [
'invoice_view.xml',
'sale_view.xml'
'sale_view.xml',
'account_move_line_view.xml',
],
'test': [],
'installable': True,

View File

@@ -0,0 +1,15 @@
<?xml version="1.0" encoding="utf-8"?>
<openerp>
<data noupdate="0">
<record id="view_move_line_form" model="ir.ui.view">
<field name="name">account.move.line.form</field>
<field name="model">account.move.line</field>
<field name="inherit_id" ref="account.view_move_line_form"/>
<field name="arch" type="xml">
<group string="Reconciliation" position="inside">
<field name="transaction_ref"/>
</group>
</field>
</record>
</data>
</openerp>