Browse Source

[FIX] timezone fix in report_xls

pull/3/head
unknown 10 years ago
committed by Yannick Vaucher
parent
commit
d1249c1e9d
  1. 2
      report_xls/__init__.py
  2. 6
      report_xls/__openerp__.py
  3. 5
      report_xls/report_xls.py
  4. 2
      report_xls/utils.py

2
report_xls/__init__.py

@ -3,7 +3,7 @@
# #
# OpenERP, Open Source Management Solution # OpenERP, Open Source Management Solution
# #
# Copyright (c) 2013 Noviat nv/sa (www.noviat.com). All rights reserved.
# Copyright (c) 2014 Noviat nv/sa (www.noviat.com). All rights reserved.
# #
# This program is free software: you can redistribute it and/or modify # This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as # it under the terms of the GNU Affero General Public License as

6
report_xls/__openerp__.py

@ -3,7 +3,7 @@
# #
# OpenERP, Open Source Management Solution # OpenERP, Open Source Management Solution
# #
# Copyright (c) 2013 Noviat nv/sa (www.noviat.com). All rights reserved.
# Copyright (c) 2014 Noviat nv/sa (www.noviat.com). All rights reserved.
# #
# This program is free software: you can redistribute it and/or modify # This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as # it under the terms of the GNU Affero General Public License as
@ -21,7 +21,7 @@
############################################################################## ##############################################################################
{ {
'name': 'Excel report engine', 'name': 'Excel report engine',
'version': '0.4',
'version': '0.4.1',
'license': 'AGPL-3', 'license': 'AGPL-3',
'author': 'Noviat', 'author': 'Noviat',
'website': 'http://www.noviat.com', 'website': 'http://www.noviat.com',
@ -67,7 +67,7 @@ the creation XLS reports in OpenERP.
Development assistance Development assistance
'''''''''''''''''''''' ''''''''''''''''''''''
Contact info@noviat.com for help with the development of Excel reports in OpenERP, .
Contact info@noviat.com for help with the development of Excel reports in OpenERP.
""", """,
'depends': ['base'], 'depends': ['base'],

5
report_xls/report_xls.py

@ -24,6 +24,7 @@ import xlwt
from xlwt.Style import default_style from xlwt.Style import default_style
import cStringIO import cStringIO
from datetime import datetime from datetime import datetime
from openerp.osv.fields import datetime as datetime_field
from openerp.tools import DEFAULT_SERVER_DATETIME_FORMAT from openerp.tools import DEFAULT_SERVER_DATETIME_FORMAT
import inspect import inspect
from types import CodeType from types import CodeType
@ -58,7 +59,6 @@ class report_xls(report_sxw):
# TO DO: move parameters infra to configurable data # TO DO: move parameters infra to configurable data
# header/footer # header/footer
DT_FORMAT = '%Y-%m-%d %H:%M:%S'
hf_params = { hf_params = {
'font_size': 8, 'font_size': 8,
'font_style': 'I', # B: Bold, I: Italic, U: Underline 'font_style': 'I', # B: Bold, I: Italic, U: Underline
@ -120,8 +120,9 @@ class report_xls(report_sxw):
self.xls_headers = { self.xls_headers = {
'standard': '', 'standard': '',
} }
report_date = datetime_field.context_timestamp(cr, uid, datetime.now(), context).strftime(DEFAULT_SERVER_DATETIME_FORMAT)
self.xls_footers = { self.xls_footers = {
'standard': ('&L&%(font_size)s&%(font_style)s' + datetime.now().strftime(DEFAULT_SERVER_DATETIME_FORMAT) +
'standard': ('&L&%(font_size)s&%(font_style)s' + report_date +
'&R&%(font_size)s&%(font_style)s&P / &N') % self.hf_params, '&R&%(font_size)s&%(font_style)s&P / &N') % self.hf_params,
} }
self.generate_xls_report(_p, _xs, data, objs, wb) self.generate_xls_report(_p, _xs, data, objs, wb)

2
report_xls/utils.py

@ -3,7 +3,7 @@
# #
# OpenERP, Open Source Management Solution # OpenERP, Open Source Management Solution
# #
# Copyright (c) 2013 Noviat nv/sa (www.noviat.com). All rights reserved.
# Copyright (c) 2014 Noviat nv/sa (www.noviat.com). All rights reserved.
# #
# This program is free software: you can redistribute it and/or modify # This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as # it under the terms of the GNU Affero General Public License as

Loading…
Cancel
Save