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

[FIX] shopfloor: change lot & inventory #23

Merged
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
4 changes: 2 additions & 2 deletions shopfloor/actions/change_package_lot.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ def _change_pack_lot_change_lot(
inventory.create_control_stock(
move_line.location_id,
move_line.product_id,
lot=move_line.lot_id,
lot=lot,
name=_("Pick: stock issue on lot: {} found in {}").format(
lot.name, move_line.location_id.name
),
Expand All @@ -110,7 +110,7 @@ def _change_pack_lot_change_lot(
previous_reserved_uom_qty,
precision_rounding=rounding,
)
< 0
!= 0
):
message["body"] += " " + _("The quantity to do has changed!")
return response_ok_func(move_line, message=message)
Expand Down
Loading