fix: remove duplicate

(cherry picked from commit 386df968c2)

# Conflicts:
#	erpnext/public/js/utils.js
This commit is contained in:
Mihir Kandoi
2025-03-19 15:25:50 +05:30
committed by Mergify
parent 41d8b26dd2
commit e5b2801830
2 changed files with 5 additions and 2 deletions

View File

@@ -701,7 +701,7 @@ erpnext.utils.update_child_items = function (opts) {
uom,
conversion_factor,
item_name,
default_bom,
bom_no,
} = r.message;
>>>>>>> 508727a57a (fix: fetch bom_no when updating items in sales order)
@@ -717,8 +717,12 @@ erpnext.utils.update_child_items = function (opts) {
<<<<<<< HEAD
=======
item_name: item_name,
<<<<<<< HEAD
bom_no: default_bom,
>>>>>>> 508727a57a (fix: fetch bom_no when updating items in sales order)
=======
bom_no: bom_no,
>>>>>>> 386df968c2 (fix: remove duplicate)
});
dialog.fields_dict.trans_items.grid.refresh();
}

View File

@@ -472,7 +472,6 @@ def get_basic_details(args, item, overwrite_warehouse=True):
"weight_per_unit": args.get("weight_per_unit") or item.get("weight_per_unit"),
"weight_uom": args.get("weight_uom") or item.get("weight_uom"),
"grant_commission": item.get("grant_commission"),
"default_bom": item.default_bom,
}
)