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.

50 lines
1.6 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_form" model="ir.ui.view">
  9. <field name="model">ir.module.type</field>
  10. <field name="arch" type="xml">
  11. <form>
  12. <sheet>
  13. <div class="oe_title">
  14. <div class="oe_edit_only"><label for="name"/></div>
  15. <h1><field name="name"/></h1>
  16. </div>
  17. <group>
  18. </group>
  19. </sheet>
  20. </form>
  21. </field>
  22. </record>
  23. <record id="view_ir_module_type_tree" model="ir.ui.view">
  24. <field name="model">ir.module.type</field>
  25. <field name="arch" type="xml">
  26. <tree>
  27. <field name="name"/>
  28. <field name="module_qty"/>
  29. </tree>
  30. </field>
  31. </record>
  32. <record id="action_ir_module_type" model="ir.actions.act_window">
  33. <field name="name">Modules Types</field>
  34. <field name="type">ir.actions.act_window</field>
  35. <field name="res_model">ir.module.type</field>
  36. <field name="view_type">form</field>
  37. <field name="view_mode">tree,form</field>
  38. </record>
  39. <menuitem id="menu_module_types"
  40. parent="menu_module_analysis_settings" sequence="2"
  41. action="action_ir_module_type"
  42. groups="base.group_no_one"/>
  43. </odoo>