Merge pull request #34380 from UmakanthKaspa/fix-fetch-datetime-quick-entry

fix: enable fetching additional field types in both forms and Quick Entry dialogs
This commit is contained in:
Ejaaz Khan 2025-10-16 11:01:28 +05:30 committed by GitHub
commit 4595c2fb87
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 14 additions and 0 deletions

View file

@ -747,6 +747,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;