mirror of
https://github.com/OCA/stock-logistics-warehouse.git
synced 2025-01-21 14:27:28 +02:00
53 lines
1.9 KiB
Python
53 lines
1.9 KiB
Python
# © 2016 Numérigraphe SARL
|
|
# Copyright 2017 ForgeFlow S.L.
|
|
# (http://www.forgeflow.com)
|
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
|
|
|
|
from odoo import _, api, models
|
|
from odoo.exceptions import ValidationError
|
|
|
|
|
|
class StockMove(models.Model):
|
|
_inherit = "stock.move"
|
|
|
|
def _get_reserved_locations(self):
|
|
self.ensure_one()
|
|
return self.move_line_ids.mapped("location_id")
|
|
|
|
def _get_dest_locations(self):
|
|
self.ensure_one()
|
|
return self.move_line_ids.mapped("location_dest_id")
|
|
|
|
@api.constrains("location_dest_id", "location_id", "state")
|
|
def _check_locked_location(self):
|
|
for move in self.filtered(lambda m: m.state != "draft"):
|
|
locked_location_ids = self.env[
|
|
"stock.inventory"
|
|
]._get_locations_open_inventories(
|
|
[move.location_dest_id.id, move.location_id.id]
|
|
)
|
|
reserved_locs = move._get_reserved_locations()
|
|
dest_locs = move._get_dest_locations()
|
|
if (
|
|
locked_location_ids
|
|
and not any(
|
|
[
|
|
move.location_dest_id.usage == "inventory",
|
|
move.location_id.usage == "inventory",
|
|
]
|
|
)
|
|
and (
|
|
move.location_dest_id in locked_location_ids
|
|
or any([loc in locked_location_ids for loc in dest_locs])
|
|
or any([loc in locked_location_ids for loc in reserved_locs])
|
|
)
|
|
):
|
|
location_names = locked_location_ids.mapped("complete_name")
|
|
raise ValidationError(
|
|
_(
|
|
"An inventory is being conducted at the following "
|
|
"location(s):\n - %s"
|
|
)
|
|
% "\n - ".join(location_names)
|
|
)
|