Skip to content
Snippets Groups Projects
Commit ea11aae8 authored by Nicolas Martinelli's avatar Nicolas Martinelli
Browse files

[FIX] stock: show total routes label


On product categories, the `total_route_ids` field is shown without
label. This is confusing for end users since the same route seems to
appear twice.

opw-2173783

closes odoo/odoo#44821

X-original-commit: 91bc6464
Signed-off-by: default avatarNicolas Martinelli (nim) <nim@odoo.com>
parent 0af58af3
No related branches found
No related tags found
No related merge requests found
......@@ -16,9 +16,7 @@
<group name="first" position="after">
<group string="Logistics">
<field name="route_ids" widget="many2many_tags" groups="stock.group_adv_location"/>
<div colspan="2" attrs="{'invisible': [('parent_id', '=', False)]}">
<field name="total_route_ids" nolabel="1" widget="many2many_tags"/>
</div>
<field name="total_route_ids" widget="many2many_tags" groups="stock.group_adv_location" attrs="{'invisible': [('parent_id', '=', False)]}"/>
<field name="removal_strategy_id" options="{'no_create': True}"/>
</group>
</group>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment