stock_helper: add location.get_closest_warehouse

On a multi warehouse configuration
where a warehouse view_location is parent of an other warehouse's view_location
this will return the closest warehouse of a location

Not like the get_warehouse method (odoo core code)
which returns from all parent warehouses found
the first one ordered by the sequence
This commit is contained in:
Michael Tietz
2022-08-10 11:55:35 +02:00
parent a218c6a5b0
commit c063696d1d
6 changed files with 62 additions and 1 deletions

View File

@@ -49,11 +49,13 @@ Authors
~~~~~~~
* Camptocamp
* Michael Tietz (MT Software)
Contributors
~~~~~~~~~~~~
* Guewen Baconnier <guewen.baconnier@camptocamp.com>
* Michael Tietz (MT Software) <mtietz@mt-software.de>
Maintainers
~~~~~~~~~~~

View File

@@ -5,7 +5,7 @@
"name": "Stock Helpers",
"summary": "Add methods shared between various stock modules",
"version": "14.0.1.0.0",
"author": "Camptocamp, Odoo Community Association (OCA)",
"author": "Camptocamp, Michael Tietz (MT Software), Odoo Community Association (OCA)",
"website": "https://github.com/OCA/stock-logistics-warehouse",
"category": "Hidden",
"depends": ["stock"],

View File

@@ -1,4 +1,5 @@
# Copyright 2020-2021 Camptocamp SA (http://www.camptocamp.com)
# Copyright 2022 Michael Tietz (MT Software) <mtietz@mt-software.de>
# License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl.html).
from odoo import models
@@ -18,3 +19,26 @@ class StockLocation(models.Model):
# Efficient way to verify that the current location is
# below one of the other location without using SQL.
return func(self.parent_path.startswith(other.parent_path) for other in others)
def get_closest_warehouse(self):
"""Returns closest warehouse for current location.
By default the get_warehouse (which is located in the odoo core module stock)
returns the warehouse via searching the view_location_id with parent_of.
If we have multiple warehouses
where a view_location_id is a parent of an other view_location_id
Then it depends on the sorting of the warehouses which this method returns
With this methods we will really get the closest warehouse of a location
"""
self.ensure_one()
location_ids = [int(x) for x in self.parent_path.split("/") if x]
warehouses = (
self.env["stock.warehouse"]
.search([("view_location_id", "in", location_ids)])
.sorted(lambda w: w.view_location_id.parent_path, reverse=True)
)
for warehouse in warehouses:
if self.parent_path.startswith(warehouse.view_location_id.parent_path):
return warehouse
return warehouses.browse()

View File

@@ -1 +1,2 @@
* Guewen Baconnier <guewen.baconnier@camptocamp.com>
* Michael Tietz (MT Software) <mtietz@mt-software.de>

View File

@@ -1 +1,2 @@
from . import test_location_is_sublocation_of
from . import test_location_get_closest_warehouse

View File

@@ -0,0 +1,33 @@
# Copyright 2022 Michael Tietz (MT Software) <mtietz@mt-software.de>
# License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl.html).
from .common import StockHelperCommonCase
class TestStockLocationGetClosestWarehouse(StockHelperCommonCase):
def test_get_closest_warehouse(self):
test_warehouse = self.env["stock.warehouse"].create(
{"name": "Test Warehouse", "code": "Test WH Code"}
)
test_warehouse.view_location_id.location_id = self.wh.lot_stock_id.id
location = test_warehouse.lot_stock_id
self.assertEqual(location.get_warehouse(), self.wh)
self.assertEqual(location.get_closest_warehouse(), test_warehouse)
self.wh.sequence = 100
test_warehouse.sequence = 1
self.assertEqual(location.get_warehouse(), test_warehouse)
self.assertEqual(location.get_closest_warehouse(), test_warehouse)
self.wh.sequence = 1
test_warehouse.sequence = 100
self.assertEqual(location.get_warehouse(), self.wh)
self.assertEqual(location.get_closest_warehouse(), test_warehouse)
def test_get_closest_warehouse_no_warehouse(self):
location = self.wh.lot_stock_id.create(
{"name": "Test no warehouse", "barcode": "test_no_warehouse"}
)
self.assertFalse(location.get_closest_warehouse())