From 1da8ed202bed90f2ee8568eb7bea695b916c43bf Mon Sep 17 00:00:00 2001 From: Nishka Gosalia Date: Mon, 12 Jan 2026 17:06:49 +0530 Subject: [PATCH] feat: Adding Item name in update item dialog box (cherry picked from commit e6133ad6d467885d246030bb2b144927a9357d6a) --- erpnext/public/js/utils.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/erpnext/public/js/utils.js b/erpnext/public/js/utils.js index ed25d70c1f8..116449a6fa8 100755 --- a/erpnext/public/js/utils.js +++ b/erpnext/public/js/utils.js @@ -735,6 +735,7 @@ erpnext.utils.update_child_items = function (opts) { fieldname: "item_name", label: __("Item Name"), read_only: 1, + in_list_view: 1, }, { fieldtype: "Link", @@ -792,7 +793,7 @@ erpnext.utils.update_child_items = function (opts) { ]; if (frm.doc.doctype == "Sales Order" || frm.doc.doctype == "Purchase Order") { - fields.splice(2, 0, { + fields.splice(3, 0, { fieldtype: "Date", fieldname: frm.doc.doctype == "Sales Order" ? "delivery_date" : "schedule_date", in_list_view: 1, @@ -800,7 +801,7 @@ erpnext.utils.update_child_items = function (opts) { default: frm.doc.doctype == "Sales Order" ? frm.doc.delivery_date : frm.doc.schedule_date, reqd: 1, }); - fields.splice(3, 0, { + fields.splice(4, 0, { fieldtype: "Float", fieldname: "conversion_factor", label: __("Conversion Factor"),