fix: parameters un get function for accounts dashboard (#20847)

This commit is contained in:
Prssanna Desai 2020-03-11 12:37:56 +05:30 committed by GitHub
parent 1a200ee66a
commit 4fd61c3f83
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -13,7 +13,8 @@ from frappe.utils.nestedset import get_descendants_of
@frappe.whitelist()
@cache_source
def get(chart_name = None, chart = None, no_cache = None, from_date = None, to_date = None):
def get(chart_name = None, chart = None, no_cache = None, filters = None, from_date = None,
to_date = None, timespan = None, time_interval = None):
if chart_name:
chart = frappe.get_doc('Dashboard Chart', chart_name)
else: