mirror of
https://github.com/frappe/erpnext.git
synced 2026-05-25 07:54:46 +00:00
15 lines
379 B
JavaScript
15 lines
379 B
JavaScript
frappe.ui.form.on("Contact", {
|
|
refresh(frm) {
|
|
frm.set_query("link_doctype", "links", function () {
|
|
return {
|
|
query: "frappe.contacts.address_and_contact.filter_dynamic_link_doctypes",
|
|
filters: {
|
|
fieldtype: ["in", ["HTML", "Text Editor"]],
|
|
fieldname: ["in", ["contact_html", "company_description"]],
|
|
},
|
|
};
|
|
});
|
|
frm.refresh_field("links");
|
|
},
|
|
});
|