blob: 41a0e8a9f9995ee34a3d686a0703cc26511e3a29 [file] [log] [blame]
Noah Jacob64454a52021-07-26 12:54:35 +05301
2
3frappe.ui.form.on("Contact", {
4 refresh(frm) {
5 frm.set_query('link_doctype', "links", function() {
6 return {
7 query: "frappe.contacts.address_and_contact.filter_dynamic_link_doctypes",
8 filters: {
9 fieldtype: ["in", ["HTML", "Text Editor"]],
10 fieldname: ["in", ["contact_html", "company_description"]],
11 }
12 };
13 });
14 frm.refresh_field("links");
15 }
16});