Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[IMP] shopfloor, zone picking: Allow partial transfer when scanning a location #909

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
71 changes: 34 additions & 37 deletions shopfloor/services/zone_picking.py
Original file line number Diff line number Diff line change
Expand Up @@ -1169,43 +1169,40 @@
)

extra_message = ""
if moving_full_quantity:
# When the barcode is a location,
# only allow it if moving the full qty.
location = search.location_from_scan(barcode)
if location:
package = None
if handle_complete_mix_pack:
package = move_line.package_id
if self._pick_pack_same_time():
(
good_for_packing,
message,
) = self._handle_pick_pack_same_time_for_location(move_line)
# TODO: we should append the msg instead.
# To achieve this, we should refactor `response.message` to a list
# or, to no break backward compat, we could add `extra_messages`
# to allow backend to send a main message and N additional messages.
extra_message = message
if not good_for_packing:
return self._response_for_set_line_destination(
move_line, message=message, qty_done=quantity
)
pkg_moved, response = self._set_destination_location(
move_line,
package,
quantity,
confirmation,
location,
barcode,
)
if response:
if extra_message:
if response.get("message"):
response["message"]["body"] += "\n" + extra_message["body"]
else:
response["message"] = extra_message
return response
location = search.location_from_scan(barcode)
if location:
package = None
if handle_complete_mix_pack:
package = move_line.package_id
if self._pick_pack_same_time():
(
good_for_packing,
message,
) = self._handle_pick_pack_same_time_for_location(move_line)
# TODO: we should append the msg instead.
# To achieve this, we should refactor `response.message` to a list
# or, to no break backward compat, we could add `extra_messages`
# to allow backend to send a main message and N additional messages.
extra_message = message
if not good_for_packing:
return self._response_for_set_line_destination(
move_line, message=message, qty_done=quantity
)
pkg_moved, response = self._set_destination_location(
move_line,
package,
quantity,
confirmation,
location,
barcode,
)
if response:
if extra_message:
if response.get("message"):
response["message"]["body"] += "\n" + extra_message["body"]

Check warning on line 1202 in shopfloor/services/zone_picking.py

View check run for this annotation

Codecov / codecov/patch

shopfloor/services/zone_picking.py#L1202

Added line #L1202 was not covered by tests
else:
response["message"] = extra_message

Check warning on line 1204 in shopfloor/services/zone_picking.py

View check run for this annotation

Codecov / codecov/patch

shopfloor/services/zone_picking.py#L1204

Added line #L1204 was not covered by tests
return response

# When the barcode is a package
package = search.package_from_scan(barcode)
Expand Down
43 changes: 29 additions & 14 deletions shopfloor/tests/test_zone_picking_set_line_destination.py
Original file line number Diff line number Diff line change
Expand Up @@ -187,15 +187,15 @@ def test_set_destination_location_no_other_move_line_partial_qty(self):
move qty 10 (assigned):
-> move_line qty 10 from location X

Then the operator move 6 qty on 10, we get:

an error because we can move only full qty by location
and only a package barcode is allowed on scan.
Then the operator move 6 qty on 10:
-> move_line qty 6 from location X (done)
-> move_line qty 4 from location X (assigned)
"""
zone_location = self.zone_location
picking_type = self.picking3.picking_type_id
barcode = self.packing_location.barcode
moves_before = self.picking3.move_ids
self.assertEqual(moves_before.product_uom_qty, 10)
self.assertEqual(len(moves_before), 1)
self.assertEqual(len(moves_before.move_line_ids), 1)
move_line = moves_before.move_line_ids
Expand All @@ -210,14 +210,21 @@ def test_set_destination_location_no_other_move_line_partial_qty(self):
"confirmation": None,
},
)
self.assert_response_set_line_destination(
move_lines = self.service._find_location_move_lines()
move_lines = move_lines.sorted(lambda l: l.move_id.priority, reverse=True)
self.assert_response_select_line(
response,
zone_location,
picking_type,
move_line,
qty_done=6,
message=self.service.msg_store.package_not_found_for_barcode(barcode),
move_lines,
message=self.service.msg_store.confirm_pack_moved(),
)
done_move = move_line.move_id
assigned_move = moves_before
self.assertEqual(done_move.state, "done")
self.assertEqual(done_move.product_uom_qty, 6)
self.assertEqual(assigned_move.state, "assigned")
self.assertEqual(assigned_move.product_uom_qty, 4)

def test_set_destination_location_several_move_line_full_qty(self):
"""Scanned barcode is the destination location.
Expand Down Expand Up @@ -297,8 +304,8 @@ def test_set_destination_location_several_move_line_partial_qty(self):

Then the operator move 4 qty on 6 (from the first move line), we get:

an error because we can move only full qty by location
and only a package barcode is allowed on scan.
-> move_line qty 6 from location X (assigned)
-> move_line qty 4 from location Y (done)
"""
zone_location = self.zone_location
picking_type = self.picking4.picking_type_id
Expand All @@ -318,14 +325,22 @@ def test_set_destination_location_several_move_line_partial_qty(self):
"confirmation": None,
},
)
self.assert_response_set_line_destination(
# Check response
move_lines = self.service._find_location_move_lines()
move_lines = move_lines.sorted(lambda l: l.move_id.priority, reverse=True)
self.assert_response_select_line(
response,
zone_location,
picking_type,
move_line,
qty_done=4,
message=self.service.msg_store.package_not_found_for_barcode(barcode),
move_lines,
message=self.service.msg_store.confirm_pack_moved(),
)
done_move = move_line.move_id
assigned_move = moves_before
self.assertEqual(done_move.state, "done")
self.assertEqual(done_move.product_uom_qty, 4)
self.assertEqual(assigned_move.state, "assigned")
self.assertEqual(assigned_move.product_uom_qty, 6)

def test_set_destination_location_zero_check(self):
"""Scanned barcode is the destination location.
Expand Down
Loading