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.

54 lines
1.7 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_author_form" model="ir.ui.view">
  9. <field name="model">ir.module.author</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. <field name="installed_module_qty"/>
  19. <field name="module_qty"/>
  20. </group>
  21. </sheet>
  22. </form>
  23. </field>
  24. </record>
  25. <record id="view_ir_module_author_tree" model="ir.ui.view">
  26. <field name="model">ir.module.author</field>
  27. <field name="arch" type="xml">
  28. <tree>
  29. <field name="name"/>
  30. <field name="installed_module_qty"/>
  31. <field name="module_qty"/>
  32. </tree>
  33. </field>
  34. </record>
  35. <record id="action_ir_module_author" model="ir.actions.act_window">
  36. <field name="name">Modules Authors</field>
  37. <field name="type">ir.actions.act_window</field>
  38. <field name="res_model">ir.module.author</field>
  39. <field name="view_type">form</field>
  40. <field name="view_mode">tree,form</field>
  41. </record>
  42. <menuitem id="menu_module_authors"
  43. parent="menu_module_analysis" sequence="1"
  44. action="action_ir_module_author"
  45. groups="base.group_no_one"/>
  46. </odoo>