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.
 
 
 
 
 

61 lines
2.5 KiB

<?xml version="1.0" encoding="UTF-8" ?>
<odoo>
<!-- Tree view for location details model-->
<record id="location_detail_view_tree" model="ir.ui.view">
<field name="name">location.detail.view.tree</field>
<field name="model">location.detail</field>
<field name="arch" type="xml">
<tree>
<field name="location_name"/>
<field name="location_area_unit" optional="hide"/>
<field name="location_area"/>
<field name="location_type"/>
<field name="company_id" groups="base.group_multi_company"/>
</tree>
</field>
</record>
<!-- Form view for location details model-->
<record id="location_detail_view_form" model="ir.ui.view">
<field name="name">location.detail.view.form</field>
<field name="model">location.detail</field>
<field name="arch" type="xml">
<form>
<sheet>
<h1>
<field name="location_name"/>
</h1>
<group>
<group>
<field name="location_address"/>
<field name="location_area"/>
<field name="company_id"/>
</group>
<group>
<field name="location_type"/>
<field name="location_area_unit"/>
</group>
</group>
<field name="note" placeholder="Location Description"/>
</sheet>
<div class="oe_chatter">
<field name="message_follower_ids"/>
<field name="activity_ids"/>
<field name="message_ids"/>
</div>
</form>
</field>
</record>
<!-- Action for location details -->
<record id="location_detail_action" model="ir.actions.act_window">
<field name="name">Locations</field>
<field name="type">ir.actions.act_window</field>
<field name="res_model">location.detail</field>
<field name="view_mode">tree,form</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>
</odoo>