Link to another Doctype With Button Field

I was wondering how to link from one Doctype ( via an “onClick” on a button field called “My Link Button”) to another Doctype in different module? Say to Selling/Customer/Form?

Also is there an easy way to add a basic javascript script to go back one page on a button field??
Something like:
function goBack() {
window.history.back();
}

Any help in getting this code to work would be really appreciated.
Thanks.

add href="#Form/Customer/CustomerName" to your button

or

frappe.set_route("Form", "Customer", "CustomerName")
2 Likes

Thanks for the reply @rmehta.
Where would I add frappe.set_route(“Form”, “Customer”, “CustomerName”) ?
In the Doctype .js file the .py file or somewhere like the “depends on” field of the button ?
An example of how it should be included would be really appreiciated.
Thanks

Custom Script

frappe.ui.form.on("Customer", "my_button", function(frm) {
  frappe.set_route("Form", "Customer", "CustomerName")
});
3 Likes

Excellent. Thanks for the help @rmehta . :smile:

@rmehta The back button of the browser doesn’t work if you navigate to a doctype using the set_route method. The back button creates a new entry. Any solution?

Is it possible to map multiple field values at a time through the frappe.set_route function ?

ex: frappe.set_route(“Form/Import Permission Received Items/New Import Permission Received Items”, {“permission_number”: frm.doc.name} , and **{“received_item”: item_name} ** )

i need to update a doc-type against the permission number and item name .

screenshots of my doctyps:


regards.

Yes, that’s possible:

frappe.set_route("Form", "Import Permission Received Items", {
    "permission_number": frm.doc.name, 
    "received_item": frm.doc.item_name,
});
2 Likes

how to add back button functionality in the existing system
if you know this functionality please let me know

Thanks

Has this syntax changed in later versions? Somehow, I am unable to implement this for my usecase, which is similar. i.e. Want to introduce a button as custom field in Patient Encounter Doctype, which on clicking should open another doctype (custom) called assessment question.
Any help? Thanks in advance