-
-
Notifications
You must be signed in to change notification settings - Fork 193
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[IMP] shopfloor: Zone picking no packing
Add an option to skip the packing step when processing a line into the zone picking scenario. Thanks to this option the processing of a line can be done by processing the location, set the qty and scan the destination even if the oroduct is not into a package.
- Loading branch information
Showing
9 changed files
with
155 additions
and
7 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
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,26 @@ | ||
# 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 | ||
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,10 +8,11 @@ | |
|
||
/* | ||
:Author: David Goodger ([email protected]) | ||
:Id: $Id: html4css1.css 8954 2022-01-20 10:10:25Z milde $ | ||
:Id: $Id: html4css1.css 9511 2024-01-13 09:50:07Z milde $ | ||
:Copyright: This stylesheet has been placed in the public domain. | ||
|
||
Default cascading style sheet for the HTML output of Docutils. | ||
Despite the name, some widely supported CSS2 features are used. | ||
|
||
See https://docutils.sourceforge.io/docs/howto/html-stylesheets.html for how to | ||
customize this style sheet. | ||
|
@@ -274,7 +275,7 @@ | |
margin-left: 2em ; | ||
margin-right: 2em } | ||
|
||
pre.code .ln { color: grey; } /* line numbers */ | ||
pre.code .ln { color: gray; } /* line numbers */ | ||
pre.code, code { background-color: #eeeeee } | ||
pre.code .comment, code .comment { color: #5C6576 } | ||
pre.code .keyword, code .keyword { color: #3B0D06; font-weight: bold } | ||
|
@@ -300,7 +301,7 @@ | |
span.pre { | ||
white-space: pre } | ||
|
||
span.problematic { | ||
span.problematic, pre.problematic { | ||
color: red } | ||
|
||
span.section-subtitle { | ||
|
@@ -485,7 +486,9 @@ <h2><a class="toc-backref" href="#toc-entry-10">Other credits</a></h2> | |
<div class="section" id="maintainers"> | ||
<h2><a class="toc-backref" href="#toc-entry-11">Maintainers</a></h2> | ||
<p>This module is maintained by the OCA.</p> | ||
<a class="reference external image-reference" href="https://odoo-community.org"><img alt="Odoo Community Association" src="https://odoo-community.org/logo.png" /></a> | ||
<a class="reference external image-reference" href="https://odoo-community.org"> | ||
<img alt="Odoo Community Association" src="https://odoo-community.org/logo.png" /> | ||
</a> | ||
<p>OCA, or the Odoo Community Association, is a nonprofit organization whose | ||
mission is to support the collaborative development of Odoo features and | ||
promote its widespread use.</p> | ||
|
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