mirror of
https://github.com/OCA/intrastat-extrastat.git
synced 2025-02-16 17:13:41 +02:00
29 lines
898 B
XML
29 lines
898 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<!--
|
|
Copyright (C) 2010-2014 Akretion (http://www.akretion.com/)
|
|
@author Alexis de Lattre <alexis.delattre@akretion.com>
|
|
The licence is in the file __openerp__.py
|
|
-->
|
|
|
|
<openerp>
|
|
<data>
|
|
|
|
<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="properties" position="after">
|
|
<group string="Intrastat Properties" name="intrastat">
|
|
<field name="exclude_from_intrastat" />
|
|
<field name="is_accessory_cost"
|
|
attrs="{'invisible': [('type', '!=', 'service')]}"/>
|
|
</group>
|
|
</group>
|
|
</field>
|
|
</record>
|
|
|
|
</data>
|
|
</openerp>
|