oca-edi/odoo-bringout-oca-edi-account_invoice_facturx/account_invoice_facturx/views/account_move.xml
2025-08-29 15:43:05 +02:00

24 lines
706 B
XML

<?xml version="1.0" encoding="utf-8" ?>
<!--
Copyright 2024 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">
<xpath
expr="//page[@id='invoice_tab']/field[@name='invoice_line_ids']/tree/field[@name='name']"
position="attributes"
>
<attribute name="required">1</attribute>
</xpath>
</field>
</record>
</odoo>