Print automatically sales invoice

Anyway, you can print the sales invoice automatically after saving and select the style and number of times

Hi @Kirolos_Fayek,

Please apply a custom/client script.

frappe.ui.form.on('Sales Invoice', {
	after_save(frm) {
		cur_frm.print_doc();
	}
});

Please set trigger your according.

Thank You!

1 Like