Criptomart/red-supermercados-coop#18 stock_inventory_product_exhausted: allow unlink empty stock.quants for archived products

This commit is contained in:
Luis 2025-12-04 17:15:36 +01:00
parent 6b1b032101
commit 9daf707f40

View file

@ -110,4 +110,7 @@ class StockQuant(models.Model):
This may need review to ensure it doesn't conflict
with standard Odoo behavior.
"""
if self.product_tmpl_id.active:
_logger.debug("Preventing automatic unlinking of zero quants")
else:
super()._unlink_zero_quants()