stock_delivery/wizard/choose_delivery_carrier_views.xml

18 lines
801 B
XML

<?xml version="1.0" encoding="utf-8"?>
<odoo>
<record id="choose_delivery_carrier_view_form" model="ir.ui.view">
<field name="name">choose.delivery.carrier.form</field>
<field name="model">choose.delivery.carrier</field>
<field name="inherit_id" ref="delivery.choose_delivery_carrier_view_form"/>
<field name="arch" type="xml">
<!-- Remove the groups to show the weight when stock is installed -->
<xpath expr="//div[@name='carried_weight']" position="attributes">
<attribute name="groups"></attribute>
</xpath>
<xpath expr="//label[@name='carried_weight_label']" position="attributes">
<attribute name="groups"></attribute>
</xpath>
</field>
</record>
</odoo>