Files
intrastat-extrastat/intrastat_base/views/product_template.xml
2023-12-29 15:11:22 +01:00

23 lines
977 B
XML

<?xml version="1.0" encoding="utf-8" ?>
<!--
Copyright 2010-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="product_template_form_view" model="ir.ui.view">
<field name="name">intrastat.base.product.template.form</field>
<field name="model">product.template</field>
<field name="inherit_id" ref="account.product_template_form_view" />
<field name="arch" type="xml">
<group name="accounting" position="inside">
<group string="Intrastat" name="intrastat">
<!-- If you need this field, inherit this view in a
localisation module to set invisible="type != 'service'" -->
<field name="is_accessory_cost" invisible="1" />
</group>
</group>
</field>
</record>
</odoo>