mirror of
https://github.com/OCA/stock-logistics-warehouse.git
synced 2025-01-21 14:27:28 +02:00
19 lines
722 B
Python
19 lines
722 B
Python
# Copyright 2019 Camptocamp SA
|
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
|
|
|
from odoo import models
|
|
|
|
|
|
class StockQuant(models.Model):
|
|
_inherit = "stock.quant"
|
|
|
|
def _update_available_quantity(self, *args, **kwargs):
|
|
result = super()._update_available_quantity(*args, **kwargs)
|
|
# We cannot have fields to depends on to invalidate this computed
|
|
# fields on vertical.lift.operation.* models. But we know that when the
|
|
# quantity of quant changes, we can invalidate the field
|
|
models = ("vertical.lift.operation.pick", "vertical.lift.operation.put")
|
|
for model in models:
|
|
self.env[model].invalidate_cache(["tray_qty"])
|
|
return result
|