9 lines
298 B
Python
9 lines
298 B
Python
|
# Copyright (c) 2013, Frappe Technologies Pvt. Ltd. and contributors
|
||
|
# For license information, please see license.txt
|
||
|
|
||
|
from __future__ import unicode_literals
|
||
|
from erpnext.selling.report.sales_analytics.sales_analytics import Analytics
|
||
|
|
||
|
def execute(filters=None):
|
||
|
return Analytics(filters).run()
|