From 7f9c4d86779573fc2805990acdb85158b85527ef Mon Sep 17 00:00:00 2001 From: Rushabh Mehta Date: Tue, 21 Apr 2015 10:19:29 +0530 Subject: [PATCH] [fix] item grid fix, via #3136 --- erpnext/templates/form_grid/item_grid.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/erpnext/templates/form_grid/item_grid.html b/erpnext/templates/form_grid/item_grid.html index 84b18f8836..bc8e23ec9d 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 {