-
-
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.
Signed-off-by jbaudoux
- Loading branch information
Showing
8 changed files
with
110 additions
and
6 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
54 changes: 54 additions & 0 deletions
54
stock_available_to_promise_release/tests/test_unrelease_merged_moves.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,54 @@ | ||
# Copyright 2023 Camptocamp SA | ||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl) | ||
|
||
from datetime import datetime | ||
|
||
from .common import PromiseReleaseCommonCase | ||
|
||
|
||
class TestAvailableToPromiseRelease(PromiseReleaseCommonCase): | ||
@classmethod | ||
def setUpClass(cls): | ||
super().setUpClass() | ||
delivery_pick_rule = cls.wh.delivery_route_id.rule_ids.filtered( | ||
lambda r: r.location_src_id == cls.loc_stock | ||
) | ||
delivery_pick_rule.group_propagation_option = "fixed" | ||
cls.pc1 = cls._create_picking_chain( | ||
cls.wh, [(cls.product1, 2)], date=datetime(2019, 9, 2, 16, 0) | ||
) | ||
cls.shipping1 = cls._out_picking(cls.pc1) | ||
cls.pc2 = cls._create_picking_chain( | ||
cls.wh, [(cls.product1, 3)], date=datetime(2019, 9, 2, 16, 0) | ||
) | ||
cls.shipping2 = cls._out_picking(cls.pc2) | ||
cls._update_qty_in_location(cls.loc_bin1, cls.product1, 15.0) | ||
cls.wh.delivery_route_id.write( | ||
{ | ||
"available_to_promise_defer_pull": True, | ||
} | ||
) | ||
shippings = cls.shipping1 | cls.shipping2 | ||
shippings.release_available_to_promise() | ||
cls.picking1 = cls._prev_picking(cls.shipping1) | ||
cls.picking1.action_assign() | ||
cls.picking2 = cls._prev_picking(cls.shipping2) | ||
cls.picking2.action_assign() | ||
|
||
@classmethod | ||
def _out_picking(cls, pickings): | ||
return pickings.filtered(lambda r: r.picking_type_code == "outgoing") | ||
|
||
@classmethod | ||
def _prev_picking(cls, picking): | ||
return picking.move_lines.move_orig_ids.picking_id | ||
|
||
def test_unrelease_merged_move(self): | ||
self.assertEqual(self.picking1, self.picking2) | ||
moves = self.picking1.move_lines.filtered(lambda m: m.state == "assigned") | ||
self.assertEqual(sum(moves.mapped("product_uom_qty")), 5.0) | ||
self.shipping2.unrelease() | ||
move = self.picking1.move_lines.filtered(lambda m: m.state == "assigned") | ||
line = move.move_line_ids | ||
self.assertEqual(move.product_uom_qty, 2.0) | ||
self.assertEqual(line.product_uom_qty, 2.0) |
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 @@ | ||
from . import models |
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
1 change: 1 addition & 0 deletions
1
stock_available_to_promise_release_dynamic_routing/models/__init__.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 @@ | ||
from . import stock_move |
36 changes: 36 additions & 0 deletions
36
stock_available_to_promise_release_dynamic_routing/models/stock_move.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,36 @@ | ||
# Copyright 2023 Jacques-Etienne Baudoux (BCIM) <[email protected]> | ||
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl) | ||
|
||
from itertools import groupby | ||
|
||
from odoo import models | ||
|
||
|
||
class StockMove(models.Model): | ||
_inherit = "stock.move" | ||
|
||
def _after_release_assign_moves(self): | ||
# Trigger the dynamic routing | ||
moves = super()._after_release_assign_moves() | ||
# Check if moves can be merged. We do this after the call to | ||
# _action_assign in super as this could delete some records in self | ||
sorted_moves_by_rule = sorted(moves, key=lambda m: m.picking_id.id) | ||
moves_to_rereserve_ids = [] | ||
new_moves = self.browse() | ||
for _picking_id, move_list in groupby( | ||
sorted_moves_by_rule, key=lambda m: m.picking_id.id | ||
): | ||
moves = self.browse(m.id for m in move_list) | ||
merged_moves = moves._merge_moves() | ||
new_moves |= merged_moves | ||
if moves != merged_moves: | ||
for move in merged_moves: | ||
if not move.quantity_done: | ||
moves_to_rereserve_ids.append(move.id) | ||
if moves_to_rereserve_ids: | ||
moves_to_rereserve = self.browse(moves_to_rereserve_ids) | ||
moves_to_rereserve._do_unreserve() | ||
moves_to_rereserve.with_context( | ||
exclude_apply_dynamic_routing=True | ||
)._action_assign() | ||
return new_moves |
1 change: 1 addition & 0 deletions
1
stock_available_to_promise_release_dynamic_routing/readme/CONTRIBUTORS.rst
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 |
---|---|---|
@@ -1,3 +1,4 @@ | ||
* Jacques-Etienne Baudoux (BCIM) <[email protected]> | ||
* Guewen Baconnier <[email protected]> | ||
* `Trobz <https://trobz.com>`_: | ||
* Dung Tran <[email protected]> | ||
|