From eafe33a1768f1a1d047c1fa118f747160adef089 Mon Sep 17 00:00:00 2001 From: navinrc Date: Sat, 9 Aug 2025 01:06:51 +0530 Subject: [PATCH] feat: add item_name column to Material Request dialog in Purchase Order (cherry picked from commit 43127190102e906e2014e9f9ced6bd2142d82d9e) --- erpnext/buying/doctype/purchase_order/purchase_order.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/erpnext/buying/doctype/purchase_order/purchase_order.js b/erpnext/buying/doctype/purchase_order/purchase_order.js index bdd5e89dda0..5bdc9900abf 100644 --- a/erpnext/buying/doctype/purchase_order/purchase_order.js +++ b/erpnext/buying/doctype/purchase_order/purchase_order.js @@ -578,7 +578,7 @@ erpnext.buying.PurchaseOrderController = class PurchaseOrderController extends ( }, allow_child_item_selection: true, child_fieldname: "items", - child_columns: ["item_code", "qty", "ordered_qty"], + child_columns: ["item_code", "item_name", "qty", "ordered_qty"], }); }, __("Get Items From")