We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents be1d923 + 8672528 commit 4fa3041Copy full SHA for 4fa3041
stock_move_location/wizard/stock_move_location.py
@@ -285,6 +285,10 @@ def action_move_location(self):
285
picking = self._create_picking()
286
else:
287
picking = self.picking_id
288
+ # Prevent putaway rules to be excuted when we don't need to
289
+ picking = picking.with_context(
290
+ avoid_putaway_rules=not self.apply_putaway_strategy
291
+ )
292
self._create_moves(picking)
293
if not self.env.context.get("planned"):
294
moves_to_reassign = self._unreserve_moves()
0 commit comments