Skip to content

Commit 3516228

Browse files
committed
[FIX] stock_orderpoint_manual_update: Fix craation off new rules
1 parent 2bfc0bd commit 3516228

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

stock_orderpoint_manual_update/models/stock_orderpoint.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ def update_qty_forecast(self):
2525
rec.qty_forecast_stored = rec.qty_forecast
2626

2727
def _get_orderpoint_products(self):
28-
domain = [("type", "=", "product"), ("stock_move_ids", "!=", False)]
28+
domain = [('is_storable', '=', True), ("stock_move_ids", "!=", False)]
2929

3030
# Filter by suppliers
3131
suppliers_ids = self._context.get("filter_suppliers")

0 commit comments

Comments
 (0)