mirror of
https://github.com/frappe/erpnext.git
synced 2026-03-07 04:24:13 +00:00
fix: error when trying to edit quantity of top most FG in bom creator
This commit is contained in:
@@ -417,7 +417,7 @@ class BOMConfigurator {
|
|||||||
doctype: doctype,
|
doctype: doctype,
|
||||||
docname: docname,
|
docname: docname,
|
||||||
qty: data.qty,
|
qty: data.qty,
|
||||||
parent: node.data.parent_id,
|
parent: node.data.parent_id ? node.data.parent_id : this.frm.doc.name,
|
||||||
},
|
},
|
||||||
callback: (r) => {
|
callback: (r) => {
|
||||||
node.data.qty = data.qty;
|
node.data.qty = data.qty;
|
||||||
|
|||||||
Reference in New Issue
Block a user