Anyone have idead how to redirecct i have crm task list
when i open any one record so thre is one option for open lead when i click on that the redirect to that link crm lead page here
Please help
Anyone have idead how to redirecct i have crm task list
Hi @Rahul7218,
Could you please elaborate on your issue in more detail? I’m having difficulty understanding your query clearly.
ok @VINOTH
i have create on quick list and in that add one filter ‘status’ = ‘To Do’
@Rahul7218, could you please clarify the expected output? What should happen when you click on your status? and what should it need to open?
@Rahul7218 Please Create Client Script
frappe.ui.form.on("CRM Task", {
refresh(frm) {
frm.add_web_link(`/crm/leads/${frm.doc.refrence_docname}`, __("Open in Portal"));
},
});