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.
 
 
 
 
 

44 lines
1.7 KiB

<?xml version="1.0" encoding="UTF-8" ?>
<odoo>
<record id="view_location_details_tree" model="ir.ui.view">
<field name="name">location.details.tree</field>
<field name="model">location.details</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"/>
</tree>
</field>
</record>
<record id="view_location_details_form" model="ir.ui.view">
<field name="name">location.details.form</field>
<field name="model">location.details</field>
<field name="arch" type="xml">
<form>
<sheet>
<h1>
<field name="location_name"/>
</h1>
<group>
<group>
<field name="location_address"/>
<field name="location_area"/>
</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>
</odoo>