hostel.xml 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <odoo>
  3. <data>
  4. <!-- Hostel Tree View -->
  5. <record id="view_hostel_tree" model="ir.ui.view">
  6. <field name="name">hostel.hostel.tree</field>
  7. <field name="model">hostel.hostel</field>
  8. <field name="arch" type="xml">
  9. <tree>
  10. <field name="name"/>
  11. <field name="hostel_code"/>
  12. </tree>
  13. </field>
  14. </record>
  15. <!-- Hostel Form View -->
  16. <record id="view_hostel_form" model="ir.ui.view">
  17. <field name="name">hostel.hostel.form</field>
  18. <field name="model">hostel.hostel</field>
  19. <field name="arch" type="xml">
  20. <form>
  21. <sheet>
  22. <group>
  23. <field name="name"/>
  24. <field name="hostel_code"/>
  25. <field name="street"/>
  26. <field name="street2"/>
  27. <field name="state_id"/>
  28. </group>
  29. </sheet>
  30. </form>
  31. </field>
  32. </record>
  33. <!-- Hostel Action -->
  34. <record id="action_hostel" model="ir.actions.act_window">
  35. <field name="name">Hostels</field>
  36. <field name="res_model">hostel.hostel</field>
  37. <field name="view_mode">tree,form</field>
  38. </record>
  39. <!-- Hostel Menu -->
  40. <menuitem id="menu_hostel_root" name="Hostel"/>
  41. <menuitem id="menu_hostel" name="Hostels" parent="menu_hostel_root" action="action_hostel"/>
  42. </data>
  43. </odoo>