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.

43 lines
1.5 KiB

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <odoo>
  3. <record id="view_continent_tree" model="ir.ui.view">
  4. <field name="name">res.continent.tree</field>
  5. <field name="model">res.continent</field>
  6. <field name="arch" type="xml">
  7. <tree string="Continents">
  8. <field name="name" />
  9. <field name="code" />
  10. </tree>
  11. </field>
  12. </record>
  13. <record id="view_continent_form" model="ir.ui.view">
  14. <field name="name">res.continent.form</field>
  15. <field name="model">res.continent</field>
  16. <field name="arch" type="xml">
  17. <form string="Continent">
  18. <group name="main">
  19. <field name="name" />
  20. <field name="code" />
  21. </group>
  22. <group name="countries" string="Countries">
  23. <field name="country_ids" nolabel="1" readonly="1"/>
  24. </group>
  25. </form>
  26. </field>
  27. </record>
  28. <record id="action_continent" model="ir.actions.act_window">
  29. <field name="name">Continents</field>
  30. <field name="res_model">res.continent</field>
  31. <field name="view_mode">tree,form</field>
  32. <field name="help">Display and manage the list of all continents that can be assigned to your partner records.</field>
  33. </record>
  34. <menuitem id="menu_continent_partner"
  35. action="action_continent"
  36. parent="sales_team.menu_localisation"
  37. sequence="1" groups="base.group_no_one"/>
  38. </odoo>