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.
15 lines
596 B
15 lines
596 B
<?xml version="1.0" encoding="utf-8"?>
|
|
<odoo>
|
|
<!-- Tree View-->
|
|
<record id="insurance_company_view_tree" model="ir.ui.view">
|
|
<field name="name">insurance.company.view.tree</field>
|
|
<field name="model">insurance.company</field>
|
|
<field name="arch" type="xml">
|
|
<tree string="Insurance Company" editable="bottom">
|
|
<field name="name" required="True"/>
|
|
<field name="email" required="True"/>
|
|
<field name="phone"/>
|
|
</tree>
|
|
</field>
|
|
</record>
|
|
</odoo>
|
|
|