fix: Filter auto repeat doctypes
This commit is contained in:
parent
7487df22c9
commit
7580125bae
1 changed files with 1 additions and 1 deletions
|
|
@ -550,7 +550,7 @@ def get_auto_repeat_doctypes(doctype, txt, searchfield, start, page_len, filters
|
|||
docs += [r.name for r in res]
|
||||
docs = set(list(docs))
|
||||
|
||||
return [[d] for d in docs]
|
||||
return [[d] for d in docs if txt in d]
|
||||
|
||||
|
||||
@frappe.whitelist()
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue