You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

34 lines
1.2 KiB

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <!--
  3. Copyright (C) 2019-Today: GRAP (<http://www.grap.coop/>)
  4. @author: Sylvain LE GAL (https://twitter.com/legalsylvain)
  5. License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
  6. -->
  7. <odoo>
  8. <record id="view_ir_module_type_rule_tree" model="ir.ui.view">
  9. <field name="model">ir.module.type.rule</field>
  10. <field name="arch" type="xml">
  11. <tree editable="bottom">
  12. <field name="sequence" widget="handle"/>
  13. <field name="module_type_id"/>
  14. <field name="module_domain"/>
  15. </tree>
  16. </field>
  17. </record>
  18. <record id="action_ir_module_type_rule" model="ir.actions.act_window">
  19. <field name="name">Modules Types Rules</field>
  20. <field name="type">ir.actions.act_window</field>
  21. <field name="res_model">ir.module.type.rule</field>
  22. <field name="view_type">form</field>
  23. <field name="view_mode">tree</field>
  24. </record>
  25. <menuitem id="menu_module_type_rules"
  26. parent="menu_module_analysis" sequence="3"
  27. action="action_ir_module_type_rule"
  28. groups="base.group_no_one"/>
  29. </odoo>