[FIX] pass flake8

This commit is contained in:
Holger Brunn
2014-07-07 14:25:58 +02:00
parent eff434f8c9
commit 989ca9dbfe
11 changed files with 95 additions and 87 deletions

View File

@@ -1,6 +1,6 @@
# -*- coding: utf-8 -*-
##############################################################################
#
#
# Copyright (C) 2012 Agile Business Group sagl (<http://www.agilebg.com>)
# Copyright (C) 2012 Domsense srl (<http://www.domsense.com>)
#

View File

@@ -1,6 +1,6 @@
# -*- coding: utf-8 -*-
##############################################################################
#
#
# Copyright (C) 2012 Domsense srl (<http://www.domsense.com>)
# Copyright (C) 2012-2013 Agile Business Group sagl
# (<http://www.agilebg.com>)
@@ -28,21 +28,30 @@
WEB EXPORT VIEW
===============
One of the best OpenERPs features is exporting custom data to CSV/XLS. You can do it by clicking on the export link in the sidebar. The export action allows use to configure what to be exported by selecting fields, etc, and allows you to save your export as a template so that you can export it once again without having to configure it again.
One of the best OpenERPs features is exporting custom data to CSV/XLS. You can
do it by clicking on the export link in the sidebar. The export action allows
use to configure what to be exported by selecting fields, etc, and allows you
to save your export as a template so that you can export it once again without
having to configure it again.
That feature is as great and advanced as limited for an everyday-customer-experience. A lot of customers want simply to export the tree view they are looking to.
That feature is as great and advanced as limited for an
everyday-customer-experience. A lot of customers want simply to export the tree
view they are looking to.
If you miss this feature as us, probably youll find an answer into our web_export_view module.
If you miss this feature as us, probably youll find an answer into our
web_export_view module.
After you installed it, youll find an additional link Export current view right below the Export one. By clicking on it youll get a XLS file contains the same data of the tree view you are looking at, headers included.
After you installed it, youll find an additional link Export current view
right below the Export one. By clicking on it youll get a XLS file contains
the same data of the tree view you are looking at, headers included.
""",
'author': 'Agile Business Group',
'website': 'http://www.agilebg.com',
'license': 'AGPL-3',
'depends': ['web'],
'external_dependencies' : {
'python' : ['xlwt'],
},
'external_dependencies': {
'python': ['xlwt'],
},
'data': [],
'active': False,
'auto_install': False,
@@ -50,4 +59,3 @@ After you installed it, youll find an additional link Export current view
'static/js/web_advanced_export.js',
],
}

View File

@@ -1,6 +1,6 @@
# -*- coding: utf-8 -*-
##############################################################################
#
#
# Copyright (C) 2012 Agile Business Group sagl (<http://www.agilebg.com>)
# Copyright (C) 2012 Domsense srl (<http://www.domsense.com>)
#
@@ -75,9 +75,9 @@ class ExcelExportView(ExcelExport):
@openerpweb.httprequest
def index(self, req, data, token):
data = json.loads(data)
model = data.get('model',[])
columns_headers = data.get('headers',[])
rows = data.get('rows',[])
model = data.get('model', [])
columns_headers = data.get('headers', [])
rows = data.get('rows', [])
context = req.session.eval_context(req.context)
lang = context.get('lang', 'en_US')