From 56912791e20bd310a8674da6608d294f9cc4e16f Mon Sep 17 00:00:00 2001 From: Rushabh Mehta Date: Mon, 6 Jul 2015 11:14:31 +0530 Subject: [PATCH] [fix] quotation list #3492 --- erpnext/selling/doctype/quotation/quotation_list.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/erpnext/selling/doctype/quotation/quotation_list.js b/erpnext/selling/doctype/quotation/quotation_list.js index add7aefa95a..204ace13f4a 100644 --- a/erpnext/selling/doctype/quotation/quotation_list.js +++ b/erpnext/selling/doctype/quotation/quotation_list.js @@ -2,7 +2,9 @@ frappe.listview_settings['Quotation'] = { add_fields: ["customer_name", "base_grand_total", "status", "company", "currency"], get_indicator: function(doc) { - if(doc.status==="Ordered") { + if(doc.status==="Submitted") { + return [__("Submitted"), "blue", "status,=,Submitted"]; + } else if(doc.status==="Ordered") { return [__("Ordered"), "green", "status,=,Ordered"]; } else if(doc.status==="Lost") { return [__("Lost"), "darkgrey", "status,=,Lost"];