mirror of
https://github.com/bringout/oca-technical.git
synced 2026-04-19 02:12:01 +02:00
16 lines
569 B
XML
16 lines
569 B
XML
<?xml version="1.0" encoding="UTF-8" ?>
|
|
<odoo>
|
|
<!-- window actions and menus -->
|
|
<record id="action_survey_form" model="ir.actions.act_window">
|
|
<field name="name">Surveys</field>
|
|
<field name="res_model">survey.survey</field>
|
|
<field name="view_mode">tree,form</field>
|
|
</record>
|
|
<menuitem
|
|
id="menu_open_survey"
|
|
action="action_survey_form"
|
|
parent="mgmtsystem.menu_mgmtsystem_configuration"
|
|
sequence="50"
|
|
groups="mgmtsystem.group_mgmtsystem_manager"
|
|
/>
|
|
</odoo>
|