Skip to content

Commit

Permalink
[IMP] shopfloor_full_location_reservation: Use strict mode for full r…
Browse files Browse the repository at this point in the history
…eservation
  • Loading branch information
rousseldenis committed Sep 4, 2024
1 parent 9c140b8 commit d477836
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ def _select_move_lines_first_location(self, move_lines):
return super()._select_move_lines_first_location(move_lines)

move_lines = super()._select_move_lines_first_location(move_lines)
move_lines |= move_lines._full_location_reservation().move_line_ids
move_lines |= move_lines._full_location_reservation(strict=True).move_line_ids

# As lines should concern only one source location and as lines
# can have been split, we need to retrieve only those with first location
Expand Down

0 comments on commit d477836

Please sign in to comment.