From 6408975b613baa471642ad7957ccc0206423ec29 Mon Sep 17 00:00:00 2001 From: Rohit Waghchaure Date: Wed, 1 Oct 2025 13:49:52 +0530 Subject: [PATCH] fix: grouping of buttons in work order --- erpnext/manufacturing/doctype/work_order/work_order.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/erpnext/manufacturing/doctype/work_order/work_order.js b/erpnext/manufacturing/doctype/work_order/work_order.js index aa4fa8b0d0b..642c071dbc0 100644 --- a/erpnext/manufacturing/doctype/work_order/work_order.js +++ b/erpnext/manufacturing/doctype/work_order/work_order.js @@ -765,7 +765,7 @@ erpnext.work_order = { if (qty > 0) { frm.add_custom_button( - __("Additional Transfer"), + __("Additional Material Transfer"), function () { erpnext.work_order.make_se( frm, @@ -807,7 +807,8 @@ erpnext.work_order = { frm, backflush_raw_materials_based_on ); - } + }, + __("Make") ); } }