From dca041afcd2d8d50f09f1d8810dc1beebd1a2f44 Mon Sep 17 00:00:00 2001 From: jcoux Date: Fri, 14 Oct 2016 15:13:58 +0200 Subject: [PATCH] OCA reports XLSX: Better override to define workbook creation options --- account_financial_report_qweb/__manifest__.py | 4 +--- .../report/abstract_report_xlsx.py | 18 ++---------------- 2 files changed, 3 insertions(+), 19 deletions(-) diff --git a/account_financial_report_qweb/__manifest__.py b/account_financial_report_qweb/__manifest__.py index 3101fcb5..789dd958 100644 --- a/account_financial_report_qweb/__manifest__.py +++ b/account_financial_report_qweb/__manifest__.py @@ -5,7 +5,7 @@ # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). { 'name': 'QWeb Financial Reports', - 'version': '10.0.1.0.0', + 'version': '10.0.1.0.1', 'category': 'Reporting', 'summary': 'OCA Financial Reports', 'author': 'Camptocamp SA,' @@ -34,8 +34,6 @@ 'report/templates/trial_balance.xml', 'view/account_view.xml' ], - 'test': [ - ], 'installable': True, 'application': True, 'auto_install': False, diff --git a/account_financial_report_qweb/report/abstract_report_xlsx.py b/account_financial_report_qweb/report/abstract_report_xlsx.py index 24d5e5bc..82560370 100644 --- a/account_financial_report_qweb/report/abstract_report_xlsx.py +++ b/account_financial_report_qweb/report/abstract_report_xlsx.py @@ -3,8 +3,6 @@ # Copyright 2016 Camptocamp SA # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). -from cStringIO import StringIO -import xlsxwriter from odoo.addons.report_xlsx.report.report_xlsx import ReportXlsx @@ -35,20 +33,8 @@ class AbstractReportXslx(ReportXlsx): self.format_amount = None self.format_percent_bold_italic = None - def create_xlsx_report(self, ids, data, report): - """ Overrides method to add constant_memory option used for large files - """ - self.parser_instance = self.parser( - self.env.cr, self.env.uid, self.name2, self.env.context) - objs = self.getObjects( - self.env.cr, self.env.uid, ids, self.env.context) - self.parser_instance.set_context(objs, data, ids, 'xlsx') - file_data = StringIO() - workbook = xlsxwriter.Workbook(file_data, {'constant_memory': True}) - self.generate_xlsx_report(workbook, data, objs) - workbook.close() - file_data.seek(0) - return (file_data.read(), 'xlsx') + def get_workbook_options(self): + return {'constant_memory': True} def generate_xlsx_report(self, workbook, data, objects): report = objects