[14.0][FIX] stock_quant_reservation_info: fix location domain on action_reserved_moves

This commit is contained in:
AlexPForgeFlow
2024-08-26 17:46:27 +02:00
parent b76ce3df80
commit 267925983f

View File

@@ -26,7 +26,7 @@ class StockQuant(models.Model):
"domain": [ "domain": [
("product_id", "=", self.product_id.id), ("product_id", "=", self.product_id.id),
("product_uom_qty", ">", 0), ("product_uom_qty", ">", 0),
("location_id.usage", "=", "internal"), ("location_id", "=", self.location_id.id),
("lot_id", "=", self.lot_id.id), ("lot_id", "=", self.lot_id.id),
("owner_id", "=", self.owner_id.id), ("owner_id", "=", self.owner_id.id),
], ],