Merge pull request #48789 from mihir-kandoi/st44460

fix: error when trying to edit quantity of top most FG in bom creator
This commit is contained in:
Mihir Kandoi
2025-07-28 14:53:19 +05:30
committed by GitHub

View File

@@ -417,7 +417,7 @@ class BOMConfigurator {
doctype: doctype,
docname: docname,
qty: data.qty,
parent: node.data.parent_id,
parent: node.data.parent_id ? node.data.parent_id : this.frm.doc.name,
},
callback: (r) => {
node.data.qty = data.qty;