Skip to content

Commit

Permalink
[14.0][FIX] stock_quant_reservation_info: fix location domain on acti…
Browse files Browse the repository at this point in the history
…on_reserved_moves
  • Loading branch information
AlexPForgeFlow committed Aug 27, 2024
1 parent b76ce3d commit 2679259
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion stock_quant_reservation_info/models/stock_quant.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ def action_reserved_moves(self):
"domain": [
("product_id", "=", self.product_id.id),
("product_uom_qty", ">", 0),
("location_id.usage", "=", "internal"),
("location_id", "=", self.location_id.id),
("lot_id", "=", self.lot_id.id),
("owner_id", "=", self.owner_id.id),
],
Expand Down

0 comments on commit 2679259

Please sign in to comment.