Show Stock Level only if any value(actual, reserved, reserved for production or projected) exists (#9168)

diff --git a/erpnext/stock/dashboard/item_dashboard.py b/erpnext/stock/dashboard/item_dashboard.py
index 28ea045..0d75a9a 100644
--- a/erpnext/stock/dashboard/item_dashboard.py
+++ b/erpnext/stock/dashboard/item_dashboard.py
@@ -31,6 +31,8 @@
 		tabBin b, tabItem i
 	where
 		b.item_code = i.name
+		and
+		(b.projected_qty != 0 or b.reserved_qty != 0 or b.reserved_qty_for_production != 0 or b.actual_qty != 0)
 		{conditions}
 	order by
 		{sort_by} {sort_order}