minor fix

This commit is contained in:
Rushabh Mehta 2014-03-04 10:38:09 +05:30
parent 2a45e1cfd0
commit 0fabc6a841

View File

@ -40,7 +40,7 @@ def item_query(doctype, txt, searchfield, start, page_len, filters):
from frappe.widgets.reportview import get_match_cond
filters.update({
"txt": txt,
"mcond": get_match_cond(filters["from"], searchfield),
"mcond": get_match_cond(filters["from"]),
"start": start,
"page_len": page_len
})