-
-
Notifications
You must be signed in to change notification settings - Fork 195
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by rousseldenis
- Loading branch information
Showing
10 changed files
with
213 additions
and
55 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
# Copyright 2024 ACSONE SA/NV | ||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). | ||
|
||
import json | ||
import logging | ||
|
||
from odoo import SUPERUSER_ID, api | ||
|
||
_logger = logging.getLogger(__name__) | ||
|
||
|
||
def migrate(cr, version): | ||
_logger.info("Updating scenario Zone Picking") | ||
if not version: | ||
return | ||
env = api.Environment(cr, SUPERUSER_ID, {}) | ||
zone_picking_scenario = env.ref("shopfloor.scenario_zone_picking") | ||
_update_scenario_options(zone_picking_scenario) | ||
|
||
|
||
def _update_scenario_options(scenario): | ||
options = scenario.options | ||
if "require_destination_package" not in options: | ||
options["require_destination_package"] = True | ||
options_edit = json.dumps(options or {}, indent=4, sort_keys=True) | ||
scenario.write({"options_edit": options_edit}) | ||
_logger.info( | ||
"Option require_destination_package added to scenario Zone Picking" | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
62 changes: 62 additions & 0 deletions
62
shopfloor/tests/test_zone_picking_require_destination_package.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
# Copyright 2020 Camptocamp SA (http://www.camptocamp.com) | ||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). | ||
from .test_zone_picking_base import ZonePickingCommonCase | ||
|
||
# pylint: disable=missing-return | ||
|
||
|
||
class ZonePickingNoPAcking(ZonePickingCommonCase): | ||
"""Tests zone picking without packing steps. | ||
* /set_destination | ||
""" | ||
|
||
def setUp(self): | ||
super().setUp() | ||
self.service.work.current_picking_type = self.picking1.picking_type_id | ||
self.picking1.move_line_ids.result_package_id = False | ||
|
||
def test_set_destination(self): | ||
# when no packing is set, you can set the destination directly | ||
# without the need to pack the product | ||
self.service.work.menu.sudo().require_destination_package = True | ||
zone_location = self.zone_location | ||
picking_type = self.picking1.picking_type_id | ||
move_line = self.picking1.move_line_ids[0] | ||
response = self.service.dispatch( | ||
"set_destination", | ||
params={ | ||
"move_line_id": move_line.id, | ||
"barcode": move_line.location_dest_id.barcode, | ||
"quantity": move_line.reserved_uom_qty, | ||
"confirmation": None, | ||
}, | ||
) | ||
self.assert_response_set_line_destination( | ||
response, | ||
zone_location, | ||
picking_type, | ||
move_line, | ||
qty_done=move_line.reserved_uom_qty, | ||
message=self.service.msg_store.dest_package_required(), | ||
) | ||
self.service.work.menu.sudo().require_destination_package = False | ||
response = self.service.dispatch( | ||
"set_destination", | ||
params={ | ||
"move_line_id": move_line.id, | ||
"barcode": move_line.location_dest_id.barcode, | ||
"quantity": move_line.reserved_uom_qty, | ||
"confirmation": None, | ||
}, | ||
) | ||
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_lines, | ||
message=self.service.msg_store.confirm_pack_moved(), | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.