[FIX] web_export_view: Handler method renamed to avoid name collision with the original index used in the native excel export

This commit is contained in:
PabloCM
2015-03-05 12:12:06 +01:00
committed by Pedro M. Baeza
parent 917d49aef8
commit 85ef4695ce

View File

@@ -36,7 +36,7 @@ class ExcelExportView(ExcelExport):
return super(ExcelExportView, self).__getattribute__(name)
@http.route('/web/export/xls_view', type='http', auth='user')
def index(self, data, token):
def export_xls_view(self, data, token):
data = json.loads(data)
model = data.get('model', [])
columns_headers = data.get('headers', [])