diff --git a/erpnext/templates/form_grid/item_grid.html b/erpnext/templates/form_grid/item_grid.html
index c2e5d56e9dd..715d4dc165d 100644
--- a/erpnext/templates/form_grid/item_grid.html
+++ b/erpnext/templates/form_grid/item_grid.html
@@ -72,17 +72,26 @@
- {%= doc.get_formatted("rate") %}
- {% if(doc.discount_percentage) { %}
-
- {%= -1 * doc.discount_percentage %}%
- {% }%}
+ {% if (frappe.perm.is_visible("rate", doc, frm.perm)) { %}
+ {%= __("hidden") %}
+ {% } else { %}
+ {%= doc.get_formatted("rate") %}
+ {% if(doc.discount_percentage) { %}
+
+ {%= -1 * doc.discount_percentage %}%
+ {% }%}
+ {% } %}
- {%= doc.get_formatted("amount") %}
+ {% if (frappe.perm.is_visible("amount", doc, frm.perm)) { %}
+ {%= __("hidden") %}
+ {% } else { %}
+ {%= doc.get_formatted("amount") %}
+ {% } %}
+
{% if(in_list(["Sales Order Item", "Purchase Order Item"],
doc.doctype) && frm.doc.docstatus===1 && doc.amount) {
var completed =