Permissions issue in BOM tree

This commit is contained in:
Nabin Hait 2018-08-23 16:24:46 +05:30
parent fbc3df3247
commit 8fe8d1758a

View File

@ -632,7 +632,10 @@ def get_children(doctype, parent=None, is_root=False, **filters):
return
if frappe.form_dict.parent:
bom_items = frappe.get_list('BOM Item',
bom_doc = frappe.get_doc("BOM", frappe.form_dict.parent)
frappe.has_permission("BOM", doc=bom_doc, throw=True)
bom_items = frappe.get_all('BOM Item',
fields=['item_code', 'bom_no as value', 'stock_qty'],
filters=[['parent', '=', frappe.form_dict.parent]],
order_by='idx')