Permisssion fixes for child table
Related to commit 595929eb2432140a27dc262d4d78aca4ec5455c3
frappe.client.[get_list, get, get_value] when called on child table
needs parent as an argument or it throws an error by default
diff --git a/erpnext/public/js/utils/item_quick_entry.js b/erpnext/public/js/utils/item_quick_entry.js
index ebb92da..b2e0b85 100644
--- a/erpnext/public/js/utils/item_quick_entry.js
+++ b/erpnext/public/js/utils/item_quick_entry.js
@@ -319,7 +319,8 @@
["parent", "=", $(e.target).attr("data-fieldname")],
["attribute_value", "like", e.target.value + "%"]
],
- fields: ["attribute_value"]
+ fields: ["attribute_value"],
+ parent: "Item"
},
callback: function(r) {
if (r.message) {
diff --git a/erpnext/stock/doctype/item/item.js b/erpnext/stock/doctype/item/item.js
index 9092176..86594a2 100644
--- a/erpnext/stock/doctype/item/item.js
+++ b/erpnext/stock/doctype/item/item.js
@@ -457,7 +457,8 @@
],
fields: ["attribute_value"],
limit_start: 0,
- limit_page_length: 500
+ limit_page_length: 500,
+ parent: "Item"
}
}).then((r) => {
if(r.message) {
@@ -577,7 +578,8 @@
["parent","=", i],
["attribute_value", "like", term + "%"]
],
- fields: ["attribute_value"]
+ fields: ["attribute_value"],
+ parent: "Item"
},
callback: function(r) {
if (r.message) {