From e3e9d7b19e073290054f198cb653630eea1b3491 Mon Sep 17 00:00:00 2001 From: creative-paramu Date: Wed, 11 Mar 2026 11:14:33 +0530 Subject: [PATCH 1/2] fix: update item description in Production Plan Assembly Items table (cherry picked from commit 19533551f44bd0527892734d3d9716a598d52e9c) --- .../manufacturing/doctype/production_plan/production_plan.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/erpnext/manufacturing/doctype/production_plan/production_plan.py b/erpnext/manufacturing/doctype/production_plan/production_plan.py index 351ba27a43e..91ae43edb6c 100644 --- a/erpnext/manufacturing/doctype/production_plan/production_plan.py +++ b/erpnext/manufacturing/doctype/production_plan/production_plan.py @@ -1784,7 +1784,7 @@ def get_item_data(item_code): return { "bom_no": item_details.get("bom_no"), "stock_uom": item_details.get("stock_uom"), - # "description": item_details.get("description") + "description": item_details.get("description") } From ef6fd7dcb5a00364cdd01a199e374b42ee6cc371 Mon Sep 17 00:00:00 2001 From: Parameshwari Palanisamy <101092028+creative-paramu@users.noreply.github.com> Date: Wed, 11 Mar 2026 11:41:24 +0530 Subject: [PATCH 2/2] Update production_plan.py (cherry picked from commit 39e68a9ce7e89583f3c39895c5537fc742b70620) --- .../manufacturing/doctype/production_plan/production_plan.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/erpnext/manufacturing/doctype/production_plan/production_plan.py b/erpnext/manufacturing/doctype/production_plan/production_plan.py index 91ae43edb6c..8dac30f175e 100644 --- a/erpnext/manufacturing/doctype/production_plan/production_plan.py +++ b/erpnext/manufacturing/doctype/production_plan/production_plan.py @@ -1784,7 +1784,7 @@ def get_item_data(item_code): return { "bom_no": item_details.get("bom_no"), "stock_uom": item_details.get("stock_uom"), - "description": item_details.get("description") + "description": item_details.get("description"), }