[price_list] [minor] move header of new grid to right if currency
diff --git a/setup/doctype/price_list/price_list.js b/setup/doctype/price_list/price_list.js
index 397e982..2c24d7e 100644
--- a/setup/doctype/price_list/price_list.js
+++ b/setup/doctype/price_list/price_list.js
@@ -93,11 +93,16 @@
// Make other headers with label as heading
$.each(this.fields, function(i, obj) {
- if (obj.in_list_view===1)
- var th = document.createElement("th");
+ var th = document.createElement("th");
+
+ // If currency then move header to right
+ if (obj.fieldtype == "Currency")
+ $(th).attr("style", "vertical-align:middle; text-align:right;");
+ else
$(th).attr("style", "vertical-align:middle");
- $(th).html(obj.label);
- $(th).appendTo(row);
+
+ $(th).html(obj.label);
+ $(th).appendTo(row);
});
return header;