Skip to content

Commit

Permalink
fix: warehouse filter in BOM Stock Calculated Report
Browse files Browse the repository at this point in the history
(cherry picked from commit 390ce57)
  • Loading branch information
s-aga-r authored and mergify[bot] committed Sep 20, 2022
1 parent 1f633b2 commit 96bf1e2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ def get_bom_data(filters):
)
)
else:
query = query.where(bin.warehouse == frappe.db.escape(filters.get("warehouse")))
query = query.where(bin.warehouse == filters.get("warehouse"))

return query.run(as_dict=True)

Expand Down

0 comments on commit 96bf1e2

Please sign in to comment.