Skip to content
Snippets Groups Projects
Commit 876b893a authored by Denis Ledoux's avatar Denis Ledoux
Browse files

[FIX] stock_picking_wave: remove picking from a wave

When removing a picking from a wave,
it should simply remove the link between
the picking and the wave, not remove the picking itself.

opw-677590
parent 07e6f28d
No related branches found
No related tags found
No related merge requests found
...@@ -23,7 +23,7 @@ ...@@ -23,7 +23,7 @@
<field name="user_id"/> <field name="user_id"/>
</group> </group>
<separator string="Pickings"/> <separator string="Pickings"/>
<field name="picking_ids" widget="many2many" domain="[('state', 'not in', ('done', 'cancel'))]"> <field name="picking_ids" widget="many2many" domain="[('state', 'not in', ('done', 'cancel'))]" options="{'not_delete': True}">
<tree> <tree>
<field name="name"/> <field name="name"/>
<field name="backorder_id"/> <field name="backorder_id"/>
......
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