mirror of
https://github.com/OCA/intrastat-extrastat.git
synced 2025-02-16 17:13:41 +02:00
34 lines
1.0 KiB
XML
34 lines
1.0 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!--
|
|
© 2011-2016 Akretion (http://www.akretion.com/)
|
|
© 2015-2016 Noviat (http://www.noviat.com/)
|
|
License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
|
-->
|
|
|
|
<odoo>
|
|
|
|
<!-- Menu entries for Intrastat -->
|
|
<menuitem id="menu_intrastat_base_root"
|
|
name="Intrastat"
|
|
parent="account.menu_finance_reports" sequence="50"/>
|
|
<menuitem id="menu_intrastat_config_root" name="Intrastat"
|
|
parent="account.menu_finance_configuration" sequence="50"/>
|
|
|
|
|
|
<record id="intrastat_result_view_form" model="ir.ui.view">
|
|
<field name="name">intrastat.result_view_form</field>
|
|
<field name="model">intrastat.result.view</field>
|
|
<field name="arch" type="xml">
|
|
<form string="Intrastat Result View">
|
|
<group name="main">
|
|
<field name="note" nolabel="1"/>
|
|
</group>
|
|
<footer>
|
|
<button string="Ok" class="oe_highlight" special="cancel"/>
|
|
</footer>
|
|
</form>
|
|
</field>
|
|
</record>
|
|
|
|
</odoo>
|