fix: Option to create pick list from work order
diff --git a/erpnext/manufacturing/doctype/work_order/work_order.js b/erpnext/manufacturing/doctype/work_order/work_order.js
index a42fc65..d345c0b 100644
--- a/erpnext/manufacturing/doctype/work_order/work_order.js
+++ b/erpnext/manufacturing/doctype/work_order/work_order.js
@@ -163,7 +163,10 @@
});
frm.add_custom_button(__('Pick List'), () => {
- frm.trigger("make_bom");
+ frappe.model.open_mapped_doc({
+ method: "erpnext.manufacturing.doctype.work_order.work_order.make_pick_list",
+ frm
+ });
}, __('Make'));
}
},