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
44 lines
1.7 KiB
<odoo>
|
|
<data>
|
|
|
|
<record id="mobile_terms_and_conditions_form_view" model="ir.ui.view">
|
|
<field name="name">mobile.terms.and.conditions.form</field>
|
|
<field name="model">terms.conditions</field>
|
|
<field name="arch" type="xml">
|
|
<form string="Complaint Type">
|
|
<sheet>
|
|
<group>
|
|
<field name="terms_conditions"/>
|
|
</group>
|
|
</sheet>
|
|
</form>
|
|
</field>
|
|
</record>
|
|
|
|
<record id="mobile_terms_and_conditions_tree_view" model="ir.ui.view">
|
|
<field name="name">mobile.terms.and.conditions.tree</field>
|
|
<field name="model">terms.conditions</field>
|
|
<field name="arch" type="xml">
|
|
<tree>
|
|
<field name="terms_conditions"/>
|
|
</tree>
|
|
</field>
|
|
</record>
|
|
|
|
<record id="action_mobile_terms_and_conditions" model="ir.actions.act_window">
|
|
<field name="name">Terms and Conditions</field>
|
|
<field name="res_model">terms.conditions</field>
|
|
<field name="view_mode">tree,form</field>
|
|
<field name="view_id" ref="mobile_terms_and_conditions_tree_view"/>
|
|
<field name="help" type="html">
|
|
<p class="oe_view_nocontent_create">
|
|
Click to Create a New Record.
|
|
</p>
|
|
</field>
|
|
</record>
|
|
|
|
<menuitem action="action_mobile_terms_and_conditions" id="mobile_service_shop_conf5"
|
|
parent="mobile_service_shop_configuration"
|
|
name="Terms and Conditions" sequence="4"/>
|
|
</data>
|
|
</odoo>
|