Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[16.0][FIX] ddmrp: Add in qualified demand only moves with positive quantities #370

Open
wants to merge 1 commit into
base: 16.0
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 3 additions & 1 deletion ddmrp/models/stock_buffer.py
Expand Up @@ -1663,13 +1663,15 @@ def _calc_qualified_demand(self, current_date=False):
if (
demand_by_days.get(date, 0.0) >= rec.order_spike_threshold
or date <= today
and demand_by_days.get(date, 0.0) > 0
):
qualified_demand += demand_by_days.get(date, 0.0)
else:
moves = moves.filtered(lambda x: x.date != date)
moves = moves.filtered(lambda x: x.date.date() != date)
if (
mrp_moves_by_days.get(date, 0.0) >= rec.order_spike_threshold
or date <= today
and mrp_moves_by_days.get(date, 0.0) > 0
):
qualified_demand += mrp_moves_by_days.get(date, 0.0)
else:
Expand Down