From 0c612be6fe345ef6b9011c6bdd85efc900d19c38 Mon Sep 17 00:00:00 2001 From: Mihir Kandoi Date: Wed, 28 May 2025 18:13:42 +0530 Subject: [PATCH] feat: show item name for raw materials in BOM creator (cherry picked from commit 90ba4ad1e1ae5b44d7fecaa2278a5530b93c8aaa) --- erpnext/manufacturing/doctype/bom_creator/bom_creator.py | 1 + 1 file changed, 1 insertion(+) diff --git a/erpnext/manufacturing/doctype/bom_creator/bom_creator.py b/erpnext/manufacturing/doctype/bom_creator/bom_creator.py index c4fb6345c93..6e778266b03 100644 --- a/erpnext/manufacturing/doctype/bom_creator/bom_creator.py +++ b/erpnext/manufacturing/doctype/bom_creator/bom_creator.py @@ -343,6 +343,7 @@ def get_children(doctype=None, parent=None, **kwargs): fields = [ "item_code as value", + "item_name as title", "is_expandable as expandable", "parent as parent_id", "qty",