Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions report_xlsx/README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ An example of XLSX report for partners:

A python class ::

from openerp.addons.report_xlsx.report.report_xlsx import ReportXlsx
from odoo.addons.report_xlsx.report.report_xlsx import ReportXlsx

class PartnerXlsx(ReportXlsx):

Expand Down Expand Up @@ -55,15 +55,15 @@ A report XML record ::

.. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas
:alt: Try me on Runbot
:target: https://runbot.odoo-community.org/runbot/143/9.0
:target: https://runbot.odoo-community.org/runbot/143/10.0

Bug Tracker
===========

Bugs are tracked on `GitHub Issues <https://github.com/OCA/reporting-engine/issues>`_.
In case of trouble, please check there if your issue has already been reported.
If you spotted it first, help us smashing it by providing a detailed and welcomed feedback
`here <https://github.com/OCA/reporting-engine/issues/new?body=module:%20report_xlsx%0Aversion:%209.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.
Bugs are tracked on `GitHub Issues
<https://github.com/OCA/reporting-engine/issues>`_. In case of trouble, please
check there if your issue has already been reported. If you spotted it first,
help us smashing it by providing a detailed and welcomed feedback.

Credits
=======
Expand Down
8 changes: 3 additions & 5 deletions report_xlsx/__manifest__.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,11 @@
'Odoo Community Association (OCA)',
'website': "http://acsone.eu",
'category': 'Reporting',
'version': '9.0.1.0.0',
'version': '10.0.1.0.0',
'license': 'AGPL-3',
'external_dependencies': {'python': ['xlsxwriter'],
'installable': False,
},
'external_dependencies': {'python': ['xlsxwriter']},
'depends': [
'base',
],
'installable': False,
'installable': True,
}
2 changes: 1 addition & 1 deletion report_xlsx/models/ir_report.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# Copyright 2015 ACSONE SA/NV (<http://acsone.eu>)
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).

from openerp import fields, models
from odoo import fields, models


class IrActionsReportXml(models.Model):
Expand Down
4 changes: 2 additions & 2 deletions report_xlsx/report/report_xlsx.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@

from cStringIO import StringIO

from openerp.report.report_sxw import report_sxw
from openerp.api import Environment
from odoo.report.report_sxw import report_sxw
from odoo.api import Environment

import logging
_logger = logging.getLogger(__name__)
Expand Down