fix: enable fetching additional field types in both forms and quick entry dialogs

This commit is contained in:
UmakanthKaspa 2025-10-13 17:29:53 +00:00
parent 76c82b411a
commit 691d79493d
2 changed files with 14 additions and 0 deletions

View file

@ -740,6 +740,13 @@ frappe.ui.form.ControlLink = class ControlLink extends frappe.ui.form.ControlDat
"Select",
"Duration",
"Time",
"Percent",
"Phone",
"Barcode",
"Autocomplete",
"Icon",
"Color",
"Rating",
].includes(df.fieldtype) ||
df.read_only == 1 ||
df.is_virtual == 1;

View file

@ -223,6 +223,13 @@ frappe.ui.form.ScriptManager = class ScriptManager {
"Select",
"Duration",
"Time",
"Percent",
"Phone",
"Barcode",
"Autocomplete",
"Icon",
"Color",
"Rating",
].includes(df.fieldtype) ||
df.read_only == 1 ||
df.is_virtual == 1;