mirror of
https://github.com/OCA/web.git
synced 2025-02-22 13:21:25 +02:00
[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:
@@ -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', [])
|
||||||
|
|||||||
Reference in New Issue
Block a user