Browse Source

[CHG][mis_builder] Use base_report_xlsx instead of report_xls

pull/189/head
Adrien Peiffer (ACSONE) 9 years ago
committed by Stéphane Bidoul
parent
commit
02e6f8988c
  1. 2
      mis_builder/__openerp__.py
  2. 2
      mis_builder/report/__init__.py
  3. 138
      mis_builder/report/mis_builder_xls.py
  4. 102
      mis_builder/report/mis_builder_xlsx.py
  5. 4
      mis_builder/views/mis_builder.xml

2
mis_builder/__openerp__.py

@ -34,7 +34,7 @@
'website': 'http://acsone.eu', 'website': 'http://acsone.eu',
'depends': [ 'depends': [
'account', 'account',
'report_xls', # OCA/reporting-engine
'base_report_xlsx', # OCA/reporting-engine
], ],
'data': [ 'data': [
'wizard/mis_builder_dashboard.xml', 'wizard/mis_builder_dashboard.xml',

2
mis_builder/report/__init__.py

@ -23,7 +23,7 @@
############################################################################## ##############################################################################
try: try:
from . import mis_builder_xls
from . import mis_builder_xlsx
except ImportError: except ImportError:
pass # this module is not installed pass # this module is not installed

138
mis_builder/report/mis_builder_xls.py

@ -1,138 +0,0 @@
# -*- encoding: utf-8 -*-
##############################################################################
#
# mis_builder module for Odoo, Management Information System Builder
# Copyright (C) 2014-2015 ACSONE SA/NV (<http://acsone.eu>)
#
# This file is a part of mis_builder
#
# mis_builder is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License v3 or later
# as published by the Free Software Foundation, either version 3 of the
# License, or (at your option) any later version.
#
# mis_builder is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License v3 or later for more details.
#
# You should have received a copy of the GNU Affero General Public License
# v3 or later along with this program.
# If not, see <http://www.gnu.org/licenses/>.
#
##############################################################################
import xlwt
from openerp.report import report_sxw
from openerp.addons.report_xls.report_xls import report_xls
import logging
_logger = logging.getLogger(__name__)
class mis_builder_xls_parser(report_sxw.rml_parse):
def __init__(self, cr, uid, name, context):
super(mis_builder_xls_parser, self).__init__(
cr, uid, name, context=context)
self.context = context
class mis_builder_xls(report_xls):
def __init__(self, name, table, rml=False, parser=False, header=True,
store=False):
super(mis_builder_xls, self).__init__(
name, table, rml, parser, header, store)
# Cell Styles
_xs = self.xls_styles
# header
rh_cell_format = _xs['bold'] + _xs['fill'] + \
_xs['borders_all'] + _xs['right']
self.rh_cell_style = xlwt.easyxf(rh_cell_format)
self.rh_cell_style_date = xlwt.easyxf(
rh_cell_format, num_format_str=report_xls.date_format)
# lines
self.mis_rh_cell_style = xlwt.easyxf(
_xs['borders_all'] + _xs['bold'] + _xs['fill'])
def generate_xls_report(self, _p, _xs, data, objects, wb):
report_name = objects[0].name
ws = wb.add_sheet(report_name[:31])
ws.panes_frozen = True
ws.remove_splits = True
ws.portrait = 0 # Landscape
ws.fit_width_to_pages = 1
row_pos = 0
# set print header/footer
ws.header_str = self.xls_headers['standard']
ws.footer_str = self.xls_footers['standard']
# Title
c_specs = [
('report_name', 1, 0, 'text', report_name),
]
row_data = self.xls_row_template(c_specs, ['report_name'])
row_pos = self.xls_write_row(
ws, row_pos, row_data, row_style=xlwt.easyxf(_xs['xls_title']))
row_pos += 1
# get the computed result of the report
data = self.pool.get('mis.report.instance').compute(
self.cr, self.uid, objects[0].id)
# Column headers
header_name_list = ['']
col_specs_template = {'': {'header': [1, 30, 'text', ''],
'header_date': [1, 1, 'text', '']}}
for col in data['header'][0]['cols']:
col_specs_template[col['name']] = {'header': [1, 30, 'text',
col['name']],
'header_date': [1, 1, 'text',
col['date']]}
header_name_list.append(col['name'])
c_specs = map(
lambda x: self.render(x, col_specs_template, 'header'),
header_name_list)
row_data = self.xls_row_template(c_specs, [x[0] for x in c_specs])
row_pos = self.xls_write_row(
ws, row_pos, row_data, row_style=self.rh_cell_style,
set_column_size=True)
c_specs = map(lambda x: self.render(
x, col_specs_template, 'header_date'), header_name_list)
row_data = self.xls_row_template(c_specs, [x[0] for x in c_specs])
row_pos = self.xls_write_row(
ws, row_pos, row_data, row_style=self.rh_cell_style_date)
ws.set_horz_split_pos(row_pos)
ws.set_vert_split_pos(1)
for line in data['content']:
col = 0
ws.write(row_pos, col, line['kpi_name'], self.mis_rh_cell_style)
for value in line['cols']:
col += 1
num_format_str = '#'
if value.get('dp'):
num_format_str += '.'
num_format_str += '0' * int(value['dp'])
if value.get('suffix'):
num_format_str = num_format_str + ' "%s"' % value['suffix']
kpi_cell_style = xlwt.easyxf(
_xs['borders_all'] + _xs['right'],
num_format_str=num_format_str)
if value.get('val'):
val = value['val']
if value.get('is_percentage'):
val = val / 0.01
ws.write(row_pos, col, val, kpi_cell_style)
else:
ws.write(row_pos, col, value['val_r'], kpi_cell_style)
row_pos += 1
mis_builder_xls('report.mis.report.instance.xls',
'mis.report.instance',
parser=mis_builder_xls_parser)

102
mis_builder/report/mis_builder_xlsx.py

@ -0,0 +1,102 @@
# -*- encoding: utf-8 -*-
##############################################################################
#
# mis_builder module for Odoo, Management Information System Builder
# Copyright (C) 2014-2015 ACSONE SA/NV (<http://acsone.eu>)
#
# This file is a part of mis_builder
#
# mis_builder is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License v3 or later
# as published by the Free Software Foundation, either version 3 of the
# License, or (at your option) any later version.
#
# mis_builder is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License v3 or later for more details.
#
# You should have received a copy of the GNU Affero General Public License
# v3 or later along with this program.
# If not, see <http://www.gnu.org/licenses/>.
#
##############################################################################
from openerp.report import report_sxw
from openerp.addons.base_report_xlsx.report.report_xlsx import ReportXlsx
import logging
_logger = logging.getLogger(__name__)
class mis_builder_xlsx_parser(report_sxw.rml_parse):
def __init__(self, cr, uid, name, context):
super(mis_builder_xlsx_parser, self).__init__(
cr, uid, name, context=context)
self.context = context
class mis_builder_xlsx(ReportXlsx):
def __init__(self, name, table, rml=False, parser=False, header=True,
store=False):
super(mis_builder_xlsx, self).__init__(
name, table, rml, parser, header, store)
def generate_xlsx_report(self, workbook, data, objects):
report_name = objects[0].name
sheet = workbook.add_worksheet(report_name[:31])
row_pos = 0
col_pos = 0
sheet.set_column(col_pos, col_pos, 30)
bold = workbook.add_format({'bold': True})
header_format = workbook.add_format({'bold': True,
'align': 'center',
'border': True,
'bg_color': '#FFFFCC'})
kpi_name_format = workbook.add_format({'bold': True,
'border': True,
'bg_color': '#FFFFCC'})
sheet.write(row_pos, 0, report_name, bold)
row_pos += 1
col_pos += 1
# get the computed result of the report
data = objects.compute()
# Column headers
for col in data['header'][0]['cols']:
sheet.set_column(col_pos, col_pos, 30)
sheet.write(row_pos, col_pos, col['name'], header_format)
sheet.write(row_pos+1, col_pos, col['date'], header_format)
col_pos += 1
row_pos += 2
for line in data['content']:
col = 0
sheet.write(row_pos, col, line['kpi_name'], kpi_name_format)
for value in line['cols']:
col += 1
num_format_str = '#'
if value.get('dp'):
num_format_str += '.'
num_format_str += '0' * int(value['dp'])
if value.get('suffix'):
num_format_str = num_format_str + ' "%s"' % value['suffix']
kpi_format = workbook.add_format({'num_format': num_format_str,
'border': 1,
'align': 'right'})
if value.get('val'):
val = value['val']
if value.get('is_percentage'):
val = val / 0.01
sheet.write(row_pos, col, val, kpi_format)
else:
sheet.write(row_pos, col, value['val_r'], kpi_format)
row_pos += 1
mis_builder_xlsx('report.mis.report.instance.xlsx',
'mis.report.instance',
parser=mis_builder_xlsx_parser)

4
mis_builder/views/mis_builder.xml

@ -102,8 +102,8 @@
<field name="name">MIS report instance XLS report</field> <field name="name">MIS report instance XLS report</field>
<field name="model">mis.report.instance</field> <field name="model">mis.report.instance</field>
<field name="type">ir.actions.report.xml</field> <field name="type">ir.actions.report.xml</field>
<field name="report_name">mis.report.instance.xls</field>
<field name="report_type">xls</field>
<field name="report_name">mis.report.instance.xlsx</field>
<field name="report_type">xlsx</field>
<field name="auto" eval="False"/> <field name="auto" eval="False"/>
</record> </record>

Loading…
Cancel
Save