commit | 390ce5719d290db38172aef69f542a862a662090 | [log] [tgz] |
---|---|---|
author | Sagar Sharma <sagarsharma.s312@gmail.com> | Tue Sep 20 16:25:20 2022 +0530 |
committer | Sagar Sharma <sagarsharma.s312@gmail.com> | Tue Sep 20 16:25:20 2022 +0530 |
tree | dd473c05a6640ba031b461776ff23235d26d0468 | |
parent | 8fd7c04920ddfb942451ec9151db36225f86f83b [diff] |
fix: warehouse filter in `BOM Stock Calculated Report`
diff --git a/erpnext/manufacturing/report/bom_stock_calculated/bom_stock_calculated.py b/erpnext/manufacturing/report/bom_stock_calculated/bom_stock_calculated.py index ec4b25c..550445c 100644 --- a/erpnext/manufacturing/report/bom_stock_calculated/bom_stock_calculated.py +++ b/erpnext/manufacturing/report/bom_stock_calculated/bom_stock_calculated.py
@@ -146,7 +146,7 @@ ) ) 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)