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
This commit is contained in:
Ameya Shenoy 2018-03-29 12:45:15 +05:30
parent edd63a178f
commit c5d222253a
No known key found for this signature in database
GPG Key ID: 735490161CD5C91E
2 changed files with 6 additions and 3 deletions

View File

@ -319,7 +319,8 @@ frappe.ui.form.ItemQuickEntryForm = frappe.ui.form.QuickEntryForm.extend({
["parent", "=", $(e.target).attr("data-fieldname")], ["parent", "=", $(e.target).attr("data-fieldname")],
["attribute_value", "like", e.target.value + "%"] ["attribute_value", "like", e.target.value + "%"]
], ],
fields: ["attribute_value"] fields: ["attribute_value"],
parent: "Item"
}, },
callback: function(r) { callback: function(r) {
if (r.message) { if (r.message) {

View File

@ -457,7 +457,8 @@ $.extend(erpnext.item, {
], ],
fields: ["attribute_value"], fields: ["attribute_value"],
limit_start: 0, limit_start: 0,
limit_page_length: 500 limit_page_length: 500,
parent: "Item"
} }
}).then((r) => { }).then((r) => {
if(r.message) { if(r.message) {
@ -577,7 +578,8 @@ $.extend(erpnext.item, {
["parent","=", i], ["parent","=", i],
["attribute_value", "like", term + "%"] ["attribute_value", "like", term + "%"]
], ],
fields: ["attribute_value"] fields: ["attribute_value"],
parent: "Item"
}, },
callback: function(r) { callback: function(r) {
if (r.message) { if (r.message) {