Skip to content

Commit

Permalink
[FIX] report_xlsx - Minor fix
Browse files Browse the repository at this point in the history
  • Loading branch information
sebalix committed Apr 13, 2016
1 parent d3c6b2d commit 91bb68b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion report_xlsx/report/report_xlsx.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ def create_xlsx_report(self, ids, data, report):
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, objs.ids, 'xlsx')
self.parser_instance.set_context(objs, data, ids, 'xlsx')
file_data = StringIO()
workbook = xlsxwriter.Workbook(file_data)
self.generate_xlsx_report(workbook, data, objs)
Expand Down

0 comments on commit 91bb68b

Please sign in to comment.