From 896328829ab4847e5fc13180344c5e8c2110a9c4 Mon Sep 17 00:00:00 2001 From: Martin Quinteros Date: Mon, 15 Dec 2025 15:08:45 +0000 Subject: [PATCH] [FIX] stock_orderpoint_manual_update: Fix craation off new rules X-original-commit: 75f2ba3b24c732fc057099b8280305bc4d643e77 --- stock_orderpoint_manual_update/models/stock_orderpoint.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stock_orderpoint_manual_update/models/stock_orderpoint.py b/stock_orderpoint_manual_update/models/stock_orderpoint.py index 82b14c3b5..370265e02 100644 --- a/stock_orderpoint_manual_update/models/stock_orderpoint.py +++ b/stock_orderpoint_manual_update/models/stock_orderpoint.py @@ -25,7 +25,7 @@ def update_qty_forecast(self): rec.qty_forecast_stored = rec.qty_forecast def _get_orderpoint_products(self): - domain = [("type", "=", "product"), ("stock_move_ids", "!=", False)] + domain = [("is_storable", "=", True), ("stock_move_ids", "!=", False)] # Filter by suppliers suppliers_ids = self._context.get("filter_suppliers")