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.
28 lines
1.2 KiB
28 lines
1.2 KiB
<?xml version="1.0" encoding="UTF-8" ?>
|
|
<odoo>
|
|
<!-- Product template inheriting to add fields -->
|
|
<record id="product_template_view_form" model="ir.ui.view">
|
|
<field name="name">product_template.view.form.inherit.autofly</field>
|
|
<field name="model">product.template</field>
|
|
<field name="inherit_id" ref="product.product_template_only_form_view"/>
|
|
<field name="arch" type="xml">
|
|
<field name="website_ribbon_id" position="after">
|
|
<field name="popular_product" string="Popular Product"/>
|
|
</field>
|
|
<xpath expr="//page[@name='general_information']" position="after">
|
|
<page name="car_details" string="Car details">
|
|
<group>
|
|
<group>
|
|
<field name="car_type_id"/>
|
|
<field name="car_brand_id"/>
|
|
</group>
|
|
<group>
|
|
<field name="car_model"/>
|
|
<field name="location"/>
|
|
</group>
|
|
</group>
|
|
</page>
|
|
</xpath>
|
|
</field>
|
|
</record>
|
|
</odoo>
|