fix: minor update

This commit is contained in:
Sanket322
2025-01-07 11:43:12 +05:30
parent c2fc80c48f
commit 04b8b7694f

View File

@@ -670,7 +670,6 @@ erpnext.utils.update_child_items = function (opts) {
}, },
onchange: function () { onchange: function () {
const me = this; const me = this;
const row_index = me.doc.idx;
frm.call({ frm.call({
method: "erpnext.stock.get_item_details.get_item_details", method: "erpnext.stock.get_item_details.get_item_details",
@@ -710,7 +709,7 @@ erpnext.utils.update_child_items = function (opts) {
const { qty, price_list_rate: rate, uom, conversion_factor } = r.message; const { qty, price_list_rate: rate, uom, conversion_factor } = r.message;
const row = dialog.fields_dict.trans_items.df.data.find( const row = dialog.fields_dict.trans_items.df.data.find(
(doc) => doc.idx == row_index (doc) => doc.idx == me.doc.idx
); );
if (row) { if (row) {
Object.assign(row, { Object.assign(row, {