[fix] item grid fix, via #3136
diff --git a/erpnext/templates/form_grid/item_grid.html b/erpnext/templates/form_grid/item_grid.html
index 84b18f8..bc8e23e 100644
--- a/erpnext/templates/form_grid/item_grid.html
+++ b/erpnext/templates/form_grid/item_grid.html
@@ -18,7 +18,7 @@
                 if(flt(frm.doc.per_delivered) < 100
                     && in_list(["Sales Order Item", "Delivery Note Item"], doc.doctype)) {
     				if(actual_qty != undefined) {
-    					if(actual_qty > doc.qty) {
+    					if(actual_qty >= doc.qty) {
     						var label_class = "label-success";
     						var title = "In Stock"
     					} else {