mirror of
https://gitlab.com/sonalarora/tra_backend.git
synced 2025-12-26 10:14:11 +02:00
42 lines
1.4 KiB
XML
42 lines
1.4 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<odoo>
|
|
<data>
|
|
|
|
<!-- view common to both template and product -->
|
|
|
|
<record id="product_template_form_view__inventory_inherit" model="ir.ui.view">
|
|
<field name="name">product.template.stock.property.form.inherit</field>
|
|
<field name="model">product.template</field>
|
|
<field name="inherit_id" ref="product.product_template_form_view"/>
|
|
<field name="arch" type="xml">
|
|
<xpath expr="//group[@name='group_general']" position="inside">
|
|
<field name="model_grade"/>
|
|
<field name="group_id"/>
|
|
</xpath>
|
|
|
|
<xpath expr="//group[@name='group_lots_and_weight']" position="inside">
|
|
<field name="width"/>
|
|
<field name="length"/>
|
|
<field name="height"/>
|
|
|
|
</xpath>
|
|
|
|
|
|
|
|
</field>
|
|
</record>
|
|
<record id="product_template_form_view_rental_inherit" model="ir.ui.view">
|
|
<field name="name">product.template.inherit.stock.rental</field>
|
|
<field name="model">product.template</field>
|
|
<field name="inherit_id" ref="sale_renting.product_template_form_view_rental"/>
|
|
<field name="arch" type="xml">
|
|
<group name="extra" position="inside">
|
|
<field name="rental_group_id"/>
|
|
</group>
|
|
</field>
|
|
</record>
|
|
|
|
|
|
</data>
|
|
</odoo>
|