[enhancement] heatmaps on item and notifications for item
diff --git a/erpnext/startup/notifications.py b/erpnext/startup/notifications.py
index 700ced2..335efbb 100644
--- a/erpnext/startup/notifications.py
+++ b/erpnext/startup/notifications.py
@@ -10,6 +10,7 @@
 			"Warranty Claim": {"status": "Open"},
 			"Task": {"status": "Overdue"},
 			"Project": {"status": "Open"},
+			"Item": {"total_projected_qty": ("<", 0)},
 			"Customer": {"status": "Open"},
 			"Supplier": {"status": "Open"},
 			"Lead": {"status": "Open"},
@@ -40,7 +41,7 @@
 				"docstatus": ("<", 2)
 			},
 			"Purchase Receipt": {"docstatus": 0},
-			"Production Order": { "status": "In Process" },
+			"Production Order": { "status": ("in", ("Draft", "Not Started", "In Process")) },
 			"BOM": {"docstatus": 0},
 			"Timesheet": {"docstatus": 0},
 			"Time Log": {"status": "Draft"},