mirror of
https://github.com/frappe/erpnext.git
synced 2026-05-29 18:04:46 +00:00
fix: get_period_list API change fixes
This commit is contained in:
@@ -12,7 +12,8 @@ def execute(filters=None):
|
||||
columns, data, chart = [], [], []
|
||||
if filters.get('fiscal_year'):
|
||||
company = erpnext.get_default_company()
|
||||
period_list = get_period_list(filters.get('fiscal_year'), filters.get('fiscal_year'),"Monthly", company)
|
||||
period_list = get_period_list(filters.get('fiscal_year'), filters.get('fiscal_year'),
|
||||
'', '', 'Fiscal Year', 'Monthly', company=company)
|
||||
columns=get_columns()
|
||||
data=get_log_data(filters)
|
||||
chart=get_chart_data(data,period_list)
|
||||
|
||||
Reference in New Issue
Block a user