mirror of https://github.com/OCA/web.git
[FIX] web_export_view: Handler method renamed to avoid name collision with the original index used in the native excel export
parent
917d49aef8
commit
85ef4695ce
|
@ -36,7 +36,7 @@ class ExcelExportView(ExcelExport):
|
||||||
return super(ExcelExportView, self).__getattribute__(name)
|
return super(ExcelExportView, self).__getattribute__(name)
|
||||||
|
|
||||||
@http.route('/web/export/xls_view', type='http', auth='user')
|
@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)
|
data = json.loads(data)
|
||||||
model = data.get('model', [])
|
model = data.get('model', [])
|
||||||
columns_headers = data.get('headers', [])
|
columns_headers = data.get('headers', [])
|
||||||
|
|
Loading…
Reference in New Issue