From 686ef8308a6b1faa150838a5dd761cbc22e55ab8 Mon Sep 17 00:00:00 2001 From: Nabin Hait Date: Mon, 8 Jun 2015 14:22:56 +0530 Subject: [PATCH] Show item name in item grid view based 'In List View' property --- erpnext/templates/form_grid/includes/visible_cols.html | 2 +- erpnext/templates/form_grid/item_grid.html | 7 ++++--- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/erpnext/templates/form_grid/includes/visible_cols.html b/erpnext/templates/form_grid/includes/visible_cols.html index e9be40ceb2..c26f279337 100644 --- a/erpnext/templates/form_grid/includes/visible_cols.html +++ b/erpnext/templates/form_grid/includes/visible_cols.html @@ -1,6 +1,6 @@ {% $.each(visible_columns || [], function(i, df) { %} {% var val = doc.get_formatted(df.fieldname); - if((df.fieldname !== "description") && val) { %} + if((df.fieldname !== "description" && df.fieldname !== "item_name") && val) { %}
{%= __(df.label) %}: diff --git a/erpnext/templates/form_grid/item_grid.html b/erpnext/templates/form_grid/item_grid.html index 8ea3e7d72a..d2db463dcb 100644 --- a/erpnext/templates/form_grid/item_grid.html +++ b/erpnext/templates/form_grid/item_grid.html @@ -1,4 +1,4 @@ -{% var visible_columns = row.get_visible_columns(["item_code", "item_name", "qty", "rate", "amount", "stock_uom", "uom", "discount_percentage", "schedule_date", "warehouse", "against_sales_order", "sales_order"]); %} +{% var visible_columns = row.get_visible_columns(["item_code", "qty", "rate", "amount", "stock_uom", "uom", "discount_percentage", "schedule_date", "warehouse", "against_sales_order", "sales_order"]); %} {% if(!doc) { %}
@@ -8,6 +8,7 @@
{%= __("Amount") %}
{% } else { %} + {% var visible_column_fieldnames = $.map(visible_columns, function(x, i) {return x.fieldname}); %}
{% if(doc.warehouse) { @@ -45,11 +46,11 @@ {%= doc.item_code %} {% } %} - {% if(doc.item_name != doc.item_code) { %} + {% if(doc.item_name != doc.item_code && in_list(visible_column_fieldnames, "item_name")) { %}
{%= doc.item_name %}{% } %} {% if((doc.description != doc.item_code != doc.item_name) && - in_list($.map(visible_columns, function(x, i) {return x.fieldname}), "description")) { %} + in_list(visible_column_fieldnames, "description")) { %}
Description: {%= doc.get_formatted("description") %}{% } %}