mirror of
https://github.com/OCA/intrastat-extrastat.git
synced 2025-02-16 17:13:41 +02:00
* Update README.rst: switch to new intrastat project * Move Intrastat menu entry to Accounting > Report instead of Accounting > Report > PDF Reports (because intrastat reports are not in PDF !)
24 lines
775 B
XML
24 lines
775 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!--
|
|
© 2013-2017 Akretion (Alexis de Lattre <alexis.delattre@akretion.com>)
|
|
License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
|
-->
|
|
|
|
<odoo>
|
|
|
|
<record id="view_account_config_settings" model="ir.ui.view">
|
|
<field name="name">intrastat.account.config.settings.form</field>
|
|
<field name="model">account.config.settings</field>
|
|
<field name="inherit_id" ref="account.view_account_config_settings" />
|
|
<field name="arch" type="xml">
|
|
<xpath expr="//field[@name='overdue_msg']/.." position="after">
|
|
<group name="intrastat" string="Intrastat">
|
|
<field name="intrastat_remind_user_ids" widget="many2many_tags" />
|
|
</group>
|
|
</xpath>
|
|
</field>
|
|
</record>
|
|
|
|
|
|
</odoo>
|