Files
account-reconcile/base_transaction_id/account_move_line_view.xml
Guewen Baconnier a95bc8d933 [MIG] base_transation_id: Fix migration to 8.0
- Use the 'data' key instead of 'update_xml'
- Use the new api for account.invoice as the base model use it
- The module now depends on 'sale_stock' and 'stock_account'
- Avoid to write 2 times on the invoice by using the method that
  prepares the values before the write
- Empty the transaction id of a sale order on copy
- Some cleaning
- Indent xml with 2 spaces
- Cleaning of the views
- Add the transaction ref field to the form view of the move lines
2018-04-06 13:49:21 +02:00

16 lines
507 B
XML

<?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>