mirror of
https://github.com/OCA/stock-logistics-warehouse.git
synced 2025-01-21 14:27:28 +02:00
29 lines
1.0 KiB
Python
29 lines
1.0 KiB
Python
# Copyright 2017-18 ForgeFlow S.L.
|
|
# (http://www.forgeflow.com)
|
|
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html).
|
|
|
|
from odoo import _, api, fields, models
|
|
from odoo.exceptions import UserError
|
|
|
|
|
|
class StockQuant(models.Model):
|
|
_inherit = "stock.quant"
|
|
|
|
removal_priority = fields.Integer(
|
|
related="location_id.removal_priority", store=True
|
|
)
|
|
|
|
@api.model
|
|
def _get_removal_strategy_order(self, removal_strategy):
|
|
if self.user_has_groups(
|
|
"stock_removal_location_by_priority.group_removal_priority"
|
|
):
|
|
if removal_strategy == "fifo":
|
|
return "in_date ASC NULLS FIRST, removal_priority ASC, id"
|
|
elif removal_strategy == "lifo":
|
|
return "in_date DESC NULLS LAST, removal_priority ASC, id desc"
|
|
raise UserError(
|
|
_("Removal strategy %s not implemented.") % (removal_strategy,)
|
|
)
|
|
return super(StockQuant, self)._get_removal_strategy_order(removal_strategy)
|