Skip to content

Commit

Permalink
fix: disabled items showing in the report 'Itemwise Recommended Reord…
Browse files Browse the repository at this point in the history
…er Level

'

(cherry picked from commit ae31ff1)
  • Loading branch information
rohitwaghchaure authored and mergify[bot] committed Dec 15, 2022
1 parent beaf955 commit 493509e
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -82,7 +82,7 @@ def get_item_info(filters):
item.safety_stock,
item.lead_time_days,
)
.where(item.is_stock_item == 1)
.where((item.is_stock_item == 1) & (item.disabled == 0))
)

if brand := filters.get("brand"):
Expand Down

0 comments on commit 493509e

Please sign in to comment.