mirror of
https://github.com/OCA/intrastat-extrastat.git
synced 2025-02-16 17:13:41 +02:00
26 lines
710 B
XML
26 lines
710 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<!--
|
|
Copyright (C) 2011-2014 Akretion (http://www.akretion.com/)
|
|
@author Alexis de Lattre <alexis.delattre@akretion.com>
|
|
The licence is in the file __openerp__.py
|
|
-->
|
|
|
|
<openerp>
|
|
<data>
|
|
|
|
<!-- Add 'exclude_from_intrastat_if_present' on tax form view -->
|
|
<record id="view_tax_form" model="ir.ui.view">
|
|
<field name="name">intrastat.base.tax</field>
|
|
<field name="model">account.tax</field>
|
|
<field name="inherit_id" ref="account.view_tax_form"/>
|
|
<field name="arch" type="xml">
|
|
<field name="active" position="after">
|
|
<field name="exclude_from_intrastat_if_present" />
|
|
</field>
|
|
</field>
|
|
</record>
|
|
|
|
</data>
|
|
</openerp>
|