24 lines
864 B
XML
24 lines
864 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!--
|
|
Copyright 2022 Akretion France (http://www.akretion.com/)
|
|
@author: Alexis de Lattre <alexis.delattre@akretion.com>
|
|
License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
|
-->
|
|
|
|
<odoo>
|
|
|
|
<record id="view_move_form" model="ir.ui.view">
|
|
<field name="model">account.move</field>
|
|
<field name="inherit_id" ref="account.view_move_form"/>
|
|
<field name="arch" type="xml">
|
|
<field name="narration" position="after">
|
|
<field name="default_move_line_name" invisible="1"/>
|
|
</field>
|
|
<xpath expr="//page[@id='aml_tab']/field[@name='line_ids']" position="attributes">
|
|
<attribute name="context" operation="python_dict" key="default_name">default_move_line_name</attribute>
|
|
</xpath>
|
|
</field>
|
|
</record>
|
|
|
|
</odoo>
|