Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion stock_orderpoint_manual_update/models/stock_orderpoint.py
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand Down