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.
 
 
 
 
 

33 lines
1.3 KiB

<?xml version="1.0" encoding="UTF-8" ?>
<odoo>
<!--Tree view of location details-->
<record id="location_details_view_tree" model="ir.ui.view">
<field name="name">location.details.view.tree</field>
<field name="model">location.details</field>
<field name="arch" type="xml">
<tree string="Locations" editable="bottom" sample="1">
<field name="name"/>
</tree>
</field>
</record>
<!-- Menu action for location details-->
<record id="location_details_action_location_details"
model="ir.actions.act_window">
<field name="name">Location</field>
<field name="type">ir.actions.act_window</field>
<field name="res_model">location.details</field>
<field name="view_mode">tree</field>
<field name="context">{'search_default_available':1}</field>
<field name="help" type="html">
<p class="o_view_nocontent_smiling_face">
Create Your First Location
</p>
</field>
</record>
<!-- Menu item for location details-->
<menuitem id="menu_location_details"
name="Locations"
parent="odoo_parking_management.parking_entry_menu_configuration_root"
action="location_details_action_location_details"
sequence="40"/>
</odoo>