OCA reporting engine fork for dev and update.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

249 lines
9.2 KiB

  1. # -*- encoding: utf-8 -*-
  2. ##############################################################################
  3. #
  4. # OpenERP, Open Source Management Solution
  5. #
  6. # Copyright (c) 2014 Noviat nv/sa (www.noviat.com). All rights reserved.
  7. #
  8. # This program is free software: you can redistribute it and/or modify
  9. # it under the terms of the GNU Affero General Public License as
  10. # published by the Free Software Foundation, either version 3 of the
  11. # License, or (at your option) any later version.
  12. #
  13. # This program is distributed in the hope that it will be useful,
  14. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. # GNU Affero General Public License for more details.
  17. #
  18. # You should have received a copy of the GNU Affero General Public License
  19. # along with this program. If not, see <http://www.gnu.org/licenses/>.
  20. #
  21. ##############################################################################
  22. import xlwt
  23. from xlwt.Style import default_style
  24. import cStringIO
  25. from datetime import datetime
  26. from openerp.osv.fields import datetime as datetime_field
  27. from openerp.tools import DEFAULT_SERVER_DATETIME_FORMAT
  28. import inspect
  29. from types import CodeType
  30. from openerp.report.report_sxw import report_sxw
  31. from openerp import pooler
  32. from openerp.tools.translate import translate, _
  33. import logging
  34. _logger = logging.getLogger(__name__)
  35. class AttrDict(dict):
  36. def __init__(self, *args, **kwargs):
  37. super(AttrDict, self).__init__(*args, **kwargs)
  38. self.__dict__ = self
  39. class report_xls(report_sxw):
  40. xls_types = {
  41. 'bool': xlwt.Row.set_cell_boolean,
  42. 'date': xlwt.Row.set_cell_date,
  43. 'text': xlwt.Row.set_cell_text,
  44. 'number': xlwt.Row.set_cell_number,
  45. }
  46. xls_types_default = {
  47. 'bool': False,
  48. 'date': None,
  49. 'text': '',
  50. 'number': 0,
  51. }
  52. # TO DO: move parameters infra to configurable data
  53. # header/footer
  54. hf_params = {
  55. 'font_size': 8,
  56. 'font_style': 'I', # B: Bold, I: Italic, U: Underline
  57. }
  58. # styles
  59. _pfc = '26' # default pattern fore_color
  60. _bc = '22' # borders color
  61. decimal_format = '#,##0.00'
  62. date_format = 'YYYY-MM-DD'
  63. xls_styles = {
  64. 'xls_title': 'font: bold true, height 240;',
  65. 'bold': 'font: bold true;',
  66. 'underline': 'font: underline true;',
  67. 'italic': 'font: italic true;',
  68. 'fill': 'pattern: pattern solid, fore_color %s;' % _pfc,
  69. 'fill_blue': 'pattern: pattern solid, fore_color 27;',
  70. 'fill_grey': 'pattern: pattern solid, fore_color 22;',
  71. 'borders_all':
  72. 'borders: '
  73. 'left thin, right thin, top thin, bottom thin, '
  74. 'left_colour %s, right_colour %s, '
  75. 'top_colour %s, bottom_colour %s;'
  76. % (_bc, _bc, _bc, _bc),
  77. 'left': 'align: horz left;',
  78. 'center': 'align: horz center;',
  79. 'right': 'align: horz right;',
  80. 'wrap': 'align: wrap true;',
  81. 'top': 'align: vert top;',
  82. 'bottom': 'align: vert bottom;',
  83. }
  84. # TO DO: move parameters supra to configurable data
  85. def create(self, cr, uid, ids, data, context=None):
  86. self.pool = pooler.get_pool(cr.dbname)
  87. self.cr = cr
  88. self.uid = uid
  89. report_obj = self.pool.get('ir.actions.report.xml')
  90. report_ids = report_obj.search(
  91. cr, uid, [('report_name', '=', self.name[7:])], context=context)
  92. if report_ids:
  93. report_xml = report_obj.browse(
  94. cr, uid, report_ids[0], context=context)
  95. self.title = report_xml.name
  96. if report_xml.report_type == 'xls':
  97. return self.create_source_xls(cr, uid, ids, data, context)
  98. elif context.get('xls_export'):
  99. # use model from 'data' when no ir.actions.report.xml entry
  100. self.table = data.get('model') or self.table
  101. return self.create_source_xls(cr, uid, ids, data, context)
  102. return super(report_xls, self).create(cr, uid, ids, data, context)
  103. def create_source_xls(self, cr, uid, ids, data, context=None):
  104. if not context:
  105. context = {}
  106. parser_instance = self.parser(cr, uid, self.name2, context)
  107. self.parser_instance = parser_instance
  108. self.context = context
  109. objs = self.getObjects(cr, uid, ids, context)
  110. parser_instance.set_context(objs, data, ids, 'xls')
  111. objs = parser_instance.localcontext['objects']
  112. n = cStringIO.StringIO()
  113. wb = xlwt.Workbook(encoding='utf-8')
  114. _p = AttrDict(parser_instance.localcontext)
  115. _xs = self.xls_styles
  116. self.xls_headers = {
  117. 'standard': '',
  118. }
  119. report_date = datetime_field.context_timestamp(
  120. cr, uid, datetime.now(), context)
  121. report_date = report_date.strftime(DEFAULT_SERVER_DATETIME_FORMAT)
  122. self.xls_footers = {
  123. 'standard': (
  124. '&L&%(font_size)s&%(font_style)s' + report_date +
  125. '&R&%(font_size)s&%(font_style)s&P / &N'
  126. ) % self.hf_params,
  127. }
  128. self.generate_xls_report(_p, _xs, data, objs, wb)
  129. wb.save(n)
  130. n.seek(0)
  131. return (n.read(), 'xls')
  132. def render(self, wanted, col_specs, rowtype, render_space='empty'):
  133. """
  134. returns 'evaluated' col_specs
  135. Input:
  136. - wanted: element from the wanted_list
  137. - col_specs : cf. specs[1:] documented in xls_row_template method
  138. - rowtype : 'header' or 'data'
  139. - render_space : type dict, (caller_space + localcontext)
  140. if not specified
  141. """
  142. if render_space == 'empty':
  143. render_space = {}
  144. caller_space = inspect.currentframe().f_back.f_back.f_locals
  145. localcontext = self.parser_instance.localcontext
  146. render_space.update(caller_space)
  147. render_space.update(localcontext)
  148. row = col_specs[wanted][rowtype][:]
  149. for i in range(len(row)):
  150. if isinstance(row[i], CodeType):
  151. row[i] = eval(row[i], render_space)
  152. row.insert(0, wanted)
  153. return row
  154. def generate_xls_report(self, parser, xls_styles, data, objects, wb):
  155. """ override this method to create your excel file """
  156. raise NotImplementedError()
  157. def xls_row_template(self, specs, wanted_list):
  158. """
  159. Returns a row template.
  160. Input :
  161. - 'wanted_list': list of Columns that will be returned in the
  162. row_template
  163. - 'specs': list with Column Characteristics
  164. 0: Column Name (from wanted_list)
  165. 1: Column Colspan
  166. 2: Column Size (unit = the width of the character 0
  167. as it appears in the sheets default font)
  168. 3: Column Type
  169. 4: Column Data
  170. 5: Column Formula (or 'None' for Data)
  171. 6: Column Style
  172. """
  173. r = []
  174. col = 0
  175. for w in wanted_list:
  176. found = False
  177. for s in specs:
  178. if s[0] == w:
  179. found = True
  180. s_len = len(s)
  181. c = list(s[:5])
  182. # set write_cell_func or formula
  183. if s_len > 5 and s[5] is not None:
  184. c.append({'formula': s[5]})
  185. else:
  186. c.append({
  187. 'write_cell_func': report_xls.xls_types[c[3]]})
  188. # Set custom cell style
  189. if s_len > 6 and s[6] is not None:
  190. c.append(s[6])
  191. else:
  192. c.append(None)
  193. # Set cell formula
  194. if s_len > 7 and s[7] is not None:
  195. c.append(s[7])
  196. else:
  197. c.append(None)
  198. r.append((col, c[1], c))
  199. col += c[1]
  200. break
  201. if not found:
  202. _logger.warn("report_xls.xls_row_template, "
  203. "column '%s' not found in specs", w)
  204. return r
  205. def xls_write_row(self, ws, row_pos, row_data,
  206. row_style=default_style, set_column_size=False):
  207. r = ws.row(row_pos)
  208. for col, size, spec in row_data:
  209. data = spec[4]
  210. formula = spec[5].get('formula') and \
  211. xlwt.Formula(spec[5]['formula']) or None
  212. style = spec[6] and spec[6] or row_style
  213. if not data:
  214. # if no data, use default values
  215. data = report_xls.xls_types_default[spec[3]]
  216. if size != 1:
  217. if formula:
  218. ws.write_merge(
  219. row_pos, row_pos, col, col + size - 1, data, style)
  220. else:
  221. ws.write_merge(
  222. row_pos, row_pos, col, col + size - 1, data, style)
  223. else:
  224. if formula:
  225. ws.write(row_pos, col, formula, style)
  226. else:
  227. spec[5]['write_cell_func'](r, col, data, style)
  228. if set_column_size:
  229. ws.col(col).width = spec[2] * 256
  230. return row_pos + 1
  231. # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: