From 5f480df024815b3d2e6899cab41871448b8b5bd5 Mon Sep 17 00:00:00 2001 From: Lois Rilo Date: Wed, 17 Jul 2024 09:12:07 +0200 Subject: [PATCH] [FIX] ddmrp: readd procure_location argument lost in migration route argument is removed becouse is not used anywhere. This was lost in migratino to v 16.0. Original commit details: [FIX] ddmrp: Check sublocations in Stock Buffers Sometimes, we want to define a Stock Buffer with entire warehouse visibility but we have Stock Demand Estimates or BoMs defined in sublocations. This commit allows to see objects defined in sublocations. Author: BernatPForgeFlow Date: Mon Jun 5 11:21:34 2023 +0200 --- ddmrp/models/stock_buffer.py | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) diff --git a/ddmrp/models/stock_buffer.py b/ddmrp/models/stock_buffer.py index 13e3fc8c4..19093bdfb 100644 --- a/ddmrp/models/stock_buffer.py +++ b/ddmrp/models/stock_buffer.py @@ -2072,14 +2072,9 @@ def cron_ddmrp(self, automatic=False): def _values_source_location_from_route(self): return {"warehouse_id": self.warehouse_id} - def _source_location_from_route(self, route=None): - """Return the replenishment source location for distributed buffers - If no route is passed, it follows the source location of the rules of - all the routes it finds until it can no longer find a path. - If a route is passed, it stops at the final source location of the - rules of this route only. - """ - current_location = self.location_id + def _source_location_from_route(self, procure_location=None): + """Return the replenishment source location for distributed buffers""" + current_location = procure_location or self.location_id rule_values = self._values_source_location_from_route() while current_location: rule = self.env["procurement.group"]._get_rule(