Skip to content

Commit

Permalink
[FIX] stock_manual_transfer: Missing label in routes view
Browse files Browse the repository at this point in the history
The fields for `warehouses_selectable` and `manual_transfers_selectable`
were placed on a single line. There was no clarity on what they represented,
as they were just two checkboxes without the appropriate labels.

Therefore, `manual_transfers_selectable` was moved to a separate field.
  • Loading branch information
TeposteAJ committed Aug 29, 2024
1 parent 85d4a00 commit 3c9b47b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion stock_manual_transfer/views/stock_route_views.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<field name="model">stock.route</field>
<field name="inherit_id" ref="stock.stock_location_route_form_view" />
<field name="arch" type="xml">
<xpath expr="//field[@name='warehouse_selectable']" position="after">
<xpath expr="//div[field[@name='warehouse_selectable']]" position="after">
<field name="manual_transfer_selectable" string="Manual transfers" />
</xpath>
</field>
Expand Down

0 comments on commit 3c9b47b

Please sign in to comment.