Skip to content

Commit

Permalink
[IMP] shopfloor_full_location_reservation: Code compatibility with PR O…
Browse files Browse the repository at this point in the history
  • Loading branch information
lmignon committed Jul 12, 2024
1 parent b4cffd4 commit 5e4b26e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,8 @@
class LocationContentTransfer(Component):
_inherit = "shopfloor.location.content.transfer"

def _find_location_move_lines_from_scan_location(self, *args, **kwargs):
move_lines = super()._find_location_move_lines_from_scan_location(
*args, **kwargs
)
def _select_move_lines_first_location(self, move_lines):
move_lines = super()._select_move_lines_first_location(move_lines)
if not self.work.menu.full_location_reservation:
return move_lines

Expand Down
3 changes: 1 addition & 2 deletions test-requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
vcrpy-unittest
odoo_test_helper
odoo-addon-stock-full-location-reservation @ git+https://github.com/OCA/wms.git@refs/pull/794/head#subdirectory=setup/stock_full_location_reservation
odoo-addon-shopfloor-base @ git+https://github.com/OCA/wms.git@refs/pull/899/head#subdirectory=setup/shopfloor_base
odoo-addon-shopfloor @ git+https://github.com/OCA/wms.git@refs/pull/899/head#subdirectory=setup/shopfloor
odoo-addon-shopfloor @ git+https://github.com/OCA/wms.git@refs/pull/917/head#subdirectory=setup/shopfloor

0 comments on commit 5e4b26e

Please sign in to comment.