Noah Jacob | cbddeda | 2021-07-26 12:54:35 +0530 | [diff] [blame] | 1 | |
2 | |||||
3 | frappe.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 | }); |