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.
29 lines
1.5 KiB
29 lines
1.5 KiB
<?xml version="1.0" encoding="utf-8"?>
|
|
<odoo>
|
|
<data>
|
|
<record id="view_ptoduct_template_volume" model="ir.ui.view">
|
|
<field name="name">product.template.volume</field>
|
|
<field name="model">product.template</field>
|
|
<field name="inherit_id" ref="stock.view_template_property_form"/>
|
|
<field name="arch" type="xml">
|
|
<xpath expr="//group[@name='group_lots_and_weight']" position="replace">
|
|
<group string="Logistics" name="group_lots_and_weight" attrs="{'invisible':[('type', 'not in', ['product', 'consu'])]}">
|
|
<label for="weight"/>
|
|
<div class="o_row" name="weight">
|
|
<field name="weight"/>
|
|
<span>kg</span>
|
|
</div>
|
|
<label for="volume"/>
|
|
<div name="volume">
|
|
<field name="length" style="width:65px;" placeholder="Length"/>
|
|
<field name="breadth" style="width:65px;" placeholder="Breadth"/>
|
|
<field name="height" style="width:60px;" placeholder="Height"/>
|
|
<field name="volume" style="width:192px;" string="Volume" />
|
|
<span>m³</span>
|
|
</div>
|
|
</group>
|
|
</xpath>
|
|
</field>
|
|
</record>
|
|
</data>
|
|
</odoo>
|