webnotes — Webnotes Module
doctype — DocType
Enter search terms or a module, class or function name.
Filter a list of records for a specific field from the full doclist
Example:
# find all phone call details dl = getlist(self.doclist, 'contact_updates') pl = [] for d in dl: if d.type=='Phone': pl.append(d)