mirror of
https://github.com/OCA/stock-logistics-warehouse.git
synced 2025-01-21 14:27:28 +02:00
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:
@@ -49,11 +49,13 @@ Authors
|
|||||||
~~~~~~~
|
~~~~~~~
|
||||||
|
|
||||||
* Camptocamp
|
* Camptocamp
|
||||||
|
* Michael Tietz (MT Software)
|
||||||
|
|
||||||
Contributors
|
Contributors
|
||||||
~~~~~~~~~~~~
|
~~~~~~~~~~~~
|
||||||
|
|
||||||
* Guewen Baconnier <guewen.baconnier@camptocamp.com>
|
* Guewen Baconnier <guewen.baconnier@camptocamp.com>
|
||||||
|
* Michael Tietz (MT Software) <mtietz@mt-software.de>
|
||||||
|
|
||||||
Maintainers
|
Maintainers
|
||||||
~~~~~~~~~~~
|
~~~~~~~~~~~
|
||||||
|
|||||||
@@ -5,7 +5,7 @@
|
|||||||
"name": "Stock Helpers",
|
"name": "Stock Helpers",
|
||||||
"summary": "Add methods shared between various stock modules",
|
"summary": "Add methods shared between various stock modules",
|
||||||
"version": "14.0.1.0.0",
|
"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",
|
"website": "https://github.com/OCA/stock-logistics-warehouse",
|
||||||
"category": "Hidden",
|
"category": "Hidden",
|
||||||
"depends": ["stock"],
|
"depends": ["stock"],
|
||||||
|
|||||||
@@ -1,4 +1,5 @@
|
|||||||
# Copyright 2020-2021 Camptocamp SA (http://www.camptocamp.com)
|
# 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).
|
# License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl.html).
|
||||||
|
|
||||||
from odoo import models
|
from odoo import models
|
||||||
@@ -18,3 +19,26 @@ class StockLocation(models.Model):
|
|||||||
# Efficient way to verify that the current location is
|
# Efficient way to verify that the current location is
|
||||||
# below one of the other location without using SQL.
|
# below one of the other location without using SQL.
|
||||||
return func(self.parent_path.startswith(other.parent_path) for other in others)
|
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()
|
||||||
|
|||||||
@@ -1 +1,2 @@
|
|||||||
* Guewen Baconnier <guewen.baconnier@camptocamp.com>
|
* Guewen Baconnier <guewen.baconnier@camptocamp.com>
|
||||||
|
* Michael Tietz (MT Software) <mtietz@mt-software.de>
|
||||||
|
|||||||
@@ -1 +1,2 @@
|
|||||||
from . import test_location_is_sublocation_of
|
from . import test_location_is_sublocation_of
|
||||||
|
from . import test_location_get_closest_warehouse
|
||||||
|
|||||||
33
stock_helper/tests/test_location_get_closest_warehouse.py
Normal file
33
stock_helper/tests/test_location_get_closest_warehouse.py
Normal 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())
|
||||||
Reference in New Issue
Block a user