mirror of
https://github.com/OCA/account-reconcile.git
synced 2025-01-20 12:27:39 +02:00
Add the transaction ref field to the form view of the move lines
This commit is contained in:
@@ -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,
|
||||
|
||||
15
base_transaction_id/account_move_line_view.xml
Normal file
15
base_transaction_id/account_move_line_view.xml
Normal 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>
|
||||
Reference in New Issue
Block a user