Files
web/web_export_view/__openerp__.py
Jairo Llopis 00119d92d1 [9.0][FIX][web_export_view] ReferenceError: instance is not defined (#515)
There was a bug that could be easily reproduced by:

1. Go to *Sales > Products*.
2. Choose list view.
3. Select all.
4. *Export current view > Excel*.

It raised this message to the user:

    ReferenceError: instance is not defined

This is all due to a wrong migration from v8 code. `instance` exists no more in
v9, instead we need to use some methods and variables from correct modules.
2017-01-04 19:45:40 +01:00

22 lines
523 B
Python

# -*- coding: utf-8 -*-
# © 2012 Agile Business Group
# © 2012 Domsense srl
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
{
'name': 'Export Current View',
'version': '9.0.1.0.1',
'category': 'Web',
'author': "Agile Business Group,Odoo Community Association (OCA)",
'website': 'http://www.agilebg.com',
'license': 'AGPL-3',
'depends': [
'web',
],
'data': [
'view/web_export_view.xml',
],
'installable': True,
'auto_install': False,
}