Add option to "make" menu

Hello
I’d like to add an option to the “Make” menu within Purchase Orders that will create a new doctype and pull in items form the current PO. I don’t see a way to do this in the form customizer, is there another way to do that?

@lorsungcu,

You can add the custom script and use the add_custom_button method to add the button

frm.add_custom_button(__("Button Lable"), function() {
	// your code
}, __("Make"));`

Thanks, but I’m not sure that’s what I’m looking for. See below:

I’d like to add a doctype in that menu. Is that possible?