Skip to content
Snippets Groups Projects

Add period_id in aml tree view (cf account_consult MO16-190)

Merged arthur.mayer requested to merge topic/16.0/MO16-190 into branch/16.0
3 files
+ 15
0
Compare changes
  • Side-by-side
  • Inline
Files
3
+ 13
0
<?xml version="1.0" encoding="utf-8" ?>
<odoo>
<record id="account_period_aml_list" model="ir.ui.view">
<field name="name">account_period_aml_list</field>
<field name="model">account.move.line</field>
<field name="inherit_id" ref="account.view_move_line_tree" />
<field name="arch" type="xml">
<xpath expr="//field[@name='date']" position="after">
<field name="period_id" />
</xpath>
</field>
</record>
</odoo>
Loading