Hello, when I try to export a custom report in Excel format I get the following error:
Traceback (most recent call last):
File "/home/erp/erpnext/apps/frappe/frappe/app.py", line 62, in application
response = frappe.handler.handle()
File "/home/erp/erpnext/apps/frappe/frappe/handler.py", line 22, in handle
data = execute_cmd(cmd)
File "/home/erp/erpnext/apps/frappe/frappe/handler.py", line 53, in execute_cmd
return frappe.call(method, **frappe.form_dict)
File "/home/erp/erpnext/apps/frappe/frappe/__init__.py", line 939, in call
return fn(*args, **newargs)
File "/home/erp/erpnext/apps/frappe/frappe/desk/query_report.py", line 161, in export_query
row_list.append(row.get(columns[idx]["fieldname"],""))
AttributeError: 'list' object has no attribute 'get'
If I select CSV the report exports without errors.
Any ideas?
Thanks!