mirror of
https://github.com/OCA/stock-logistics-warehouse.git
synced 2025-01-21 14:27:28 +02:00
197 lines
7.4 KiB
Python
197 lines
7.4 KiB
Python
# Copyright 2019 Camptocamp SA
|
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
|
|
|
from odoo import exceptions
|
|
|
|
from .common import LocationTrayTypeCase
|
|
|
|
|
|
class TestLocation(LocationTrayTypeCase):
|
|
def test_create_tray(self):
|
|
tray_type = self.tray_type_small_8x
|
|
tray_loc = self.env["stock.location"].create(
|
|
{
|
|
"name": "Tray Z",
|
|
"location_id": self.stock_location.id,
|
|
"usage": "internal",
|
|
"tray_type_id": tray_type.id,
|
|
}
|
|
)
|
|
|
|
self.assertEqual(len(tray_loc.child_ids), tray_type.cols * tray_type.rows) # 8
|
|
self.assertTrue(
|
|
all(
|
|
subloc.cell_in_tray_type_id == tray_type
|
|
for subloc in tray_loc.child_ids
|
|
)
|
|
)
|
|
|
|
def test_tray_has_stock(self):
|
|
cell = self.env.ref("stock_location_tray.stock_location_tray_demo_x3y2")
|
|
self.assertFalse(cell.quant_ids)
|
|
self.assertFalse(cell.tray_cell_contains_stock)
|
|
self._update_quantity_in_cell(cell, self.product, 1)
|
|
self.assertTrue(cell.quant_ids)
|
|
self.assertTrue(cell.tray_cell_contains_stock)
|
|
self._update_quantity_in_cell(cell, self.product, -1)
|
|
self.assertTrue(cell.quant_ids)
|
|
self.assertFalse(cell.tray_cell_contains_stock)
|
|
|
|
def test_matrix_empty_tray(self):
|
|
self.assertEqual(self.tray_location.tray_type_id.cols, 4)
|
|
self.assertEqual(self.tray_location.tray_type_id.rows, 2)
|
|
self.assertEqual(
|
|
self.tray_location.tray_matrix,
|
|
{
|
|
# we show the entire tray, not a cell
|
|
"selected": [],
|
|
# we have no stock in this location
|
|
# fmt: off
|
|
'cells': [
|
|
[0, 0, 0, 0],
|
|
[0, 0, 0, 0],
|
|
]
|
|
# fmt: on
|
|
},
|
|
)
|
|
|
|
def test_matrix_stock_tray(self):
|
|
self._update_quantity_in_cell(
|
|
self._cell_for(self.tray_location, x=1, y=1), self.product, 100
|
|
)
|
|
self._update_quantity_in_cell(
|
|
self._cell_for(self.tray_location, x=2, y=1), self.product, 100
|
|
)
|
|
self._update_quantity_in_cell(
|
|
self._cell_for(self.tray_location, x=4, y=2), self.product, 100
|
|
)
|
|
self.assertEqual(self.tray_location.tray_type_id.cols, 4)
|
|
self.assertEqual(self.tray_location.tray_type_id.rows, 2)
|
|
self.assertEqual(
|
|
self.tray_location.tray_matrix,
|
|
{
|
|
# We show the entire tray, not a cell.
|
|
"selected": [],
|
|
# Note: the coords are stored according to their index in the
|
|
# arrays so it is easier to manipulate them. However, we
|
|
# display them with the Y axis inverted in the UI to represent
|
|
# the view of the operator.
|
|
#
|
|
# [0, 0, 0, 1],
|
|
# [1, 1, 0, 0],
|
|
#
|
|
# fmt: off
|
|
'cells': [
|
|
[1, 1, 0, 0],
|
|
[0, 0, 0, 1],
|
|
]
|
|
# fmt: on
|
|
},
|
|
)
|
|
|
|
def test_matrix_stock_cell(self):
|
|
self.tray_location.tray_type_id = self.env.ref(
|
|
"stock_location_tray.stock_location_tray_type_large_32x"
|
|
)
|
|
cell = self._cell_for(self.tray_location, x=7, y=3)
|
|
self._update_quantity_in_cell(cell, self.product, 100)
|
|
self._update_quantity_in_cell(
|
|
self._cell_for(self.tray_location, x=1, y=1), self.product, 100
|
|
)
|
|
self._update_quantity_in_cell(
|
|
self._cell_for(self.tray_location, x=3, y=2), self.product, 100
|
|
)
|
|
self.assertEqual(self.tray_location.tray_type_id.cols, 8)
|
|
self.assertEqual(self.tray_location.tray_type_id.rows, 4)
|
|
self.assertEqual(
|
|
cell.tray_matrix,
|
|
{
|
|
# When called on a cell, we expect to have its coords. Worth to
|
|
# note: the cell's coordinate are 7 and 3 in the posx and posy
|
|
# fields as they make sense for humans. Here, they are offset
|
|
# by -1 to have the indexes in the matrix.
|
|
"selected": [6, 2],
|
|
# fmt: off
|
|
'cells': [
|
|
[1, 0, 0, 0, 0, 0, 0, 0],
|
|
[0, 0, 1, 0, 0, 0, 0, 0],
|
|
[0, 0, 0, 0, 0, 0, 1, 0],
|
|
[0, 0, 0, 0, 0, 0, 0, 0],
|
|
]
|
|
# fmt: on
|
|
},
|
|
)
|
|
|
|
def test_check_active_empty(self):
|
|
cell = self.env.ref("stock_location_tray.stock_location_tray_demo_x3y2")
|
|
self.assertFalse(cell.tray_cell_contains_stock)
|
|
# allowed to archive empty cell
|
|
cell.active = False
|
|
|
|
def test_check_active_not_empty(self):
|
|
cell = self.env.ref("stock_location_tray.stock_location_tray_demo_x3y2")
|
|
self._update_quantity_in_cell(cell, self.product, 1)
|
|
self.assertTrue(cell.tray_cell_contains_stock)
|
|
|
|
# we cannot archive an empty cell or any parent
|
|
location = cell
|
|
message = "cannot be archived"
|
|
while location:
|
|
with self.assertRaisesRegex(exceptions.ValidationError, message):
|
|
location.active = False
|
|
|
|
# restore state for the next test loop
|
|
location.active = True
|
|
location = location.location_id
|
|
if location == self.wh.lot_stock_id:
|
|
# we can't disable the Stock location anyway
|
|
break
|
|
|
|
def test_change_tray_type_when_empty(self):
|
|
tray_type = self.tray_type_small_32x
|
|
self.tray_location.tray_type_id = tray_type
|
|
self.assertEqual(
|
|
len(self.tray_location.child_ids), tray_type.cols * tray_type.rows # 32
|
|
)
|
|
|
|
def test_change_tray_type_error_when_not_empty(self):
|
|
self._update_quantity_in_cell(
|
|
self._cell_for(self.tray_location, x=1, y=1), self.product, 1
|
|
)
|
|
tray_type = self.tray_type_small_32x
|
|
message = "cannot be modified when they contain products"
|
|
with self.assertRaisesRegex(exceptions.UserError, message):
|
|
self.tray_location.tray_type_id = tray_type
|
|
|
|
def test_location_center_pos(self):
|
|
cell = self.env.ref("stock_location_tray.stock_location_tray_demo_x3y2")
|
|
tray_type = cell.cell_in_tray_type_id
|
|
number_of_x = 4
|
|
number_of_y = 2
|
|
self.assertEqual((number_of_x, number_of_y), (tray_type.cols, tray_type.rows))
|
|
|
|
total_width = 80
|
|
total_depth = 30
|
|
tray_type.width = total_width
|
|
tray_type.depth = total_depth
|
|
|
|
self.assertEqual(
|
|
(total_width / number_of_x, total_depth / number_of_y),
|
|
(tray_type.width_per_cell, tray_type.depth_per_cell),
|
|
)
|
|
from_left, from_bottom = cell.tray_cell_center_position()
|
|
# fmt: off
|
|
expected_left = (
|
|
(total_width / number_of_x) # width of a cell
|
|
* 2 # we want the center of the cell x3, so we want 2 full cells
|
|
+ ((total_width / number_of_x) / 2) # + the half of our cell
|
|
)
|
|
expected_bottom = (
|
|
(total_depth / number_of_y) # depth of a cell
|
|
* 1 # we want the center of the cell y2, so we want 1 full cells
|
|
+ ((total_depth / number_of_y) / 2) # + the half of our cell
|
|
)
|
|
# fmt: on
|
|
self.assertEqual(from_left, expected_left)
|
|
self.assertEqual(from_bottom, expected_bottom)
|