[MIG] Migration of report_xlsx to 10.0 (#76)
parent
8d054ceaf7
commit
76505f076c
|
@ -22,7 +22,7 @@ An example of XLSX report for partners:
|
||||||
|
|
||||||
A python class ::
|
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):
|
class PartnerXlsx(ReportXlsx):
|
||||||
|
|
||||||
|
@ -55,15 +55,15 @@ A report XML record ::
|
||||||
|
|
||||||
.. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas
|
.. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas
|
||||||
:alt: Try me on Runbot
|
: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
|
Bug Tracker
|
||||||
===========
|
===========
|
||||||
|
|
||||||
Bugs are tracked on `GitHub Issues <https://github.com/OCA/reporting-engine/issues>`_.
|
Bugs are tracked on `GitHub Issues
|
||||||
In case of trouble, please check there if your issue has already been reported.
|
<https://github.com/OCA/reporting-engine/issues>`_. In case of trouble, please
|
||||||
If you spotted it first, help us smashing it by providing a detailed and welcomed feedback
|
check there if your issue has already been reported. If you spotted it first,
|
||||||
`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**>`_.
|
help us smashing it by providing a detailed and welcomed feedback.
|
||||||
|
|
||||||
Credits
|
Credits
|
||||||
=======
|
=======
|
||||||
|
|
|
@ -10,10 +10,11 @@
|
||||||
'Odoo Community Association (OCA)',
|
'Odoo Community Association (OCA)',
|
||||||
'website': "http://acsone.eu",
|
'website': "http://acsone.eu",
|
||||||
'category': 'Reporting',
|
'category': 'Reporting',
|
||||||
'version': '9.0.1.0.0',
|
'version': '10.0.1.0.0',
|
||||||
'license': 'AGPL-3',
|
'license': 'AGPL-3',
|
||||||
'external_dependencies': {'python': ['xlsxwriter']},
|
'external_dependencies': {'python': ['xlsxwriter']},
|
||||||
'depends': [
|
'depends': [
|
||||||
'base',
|
'base',
|
||||||
],
|
],
|
||||||
|
'installable': True,
|
||||||
}
|
}
|
|
@ -2,7 +2,7 @@
|
||||||
# Copyright 2015 ACSONE SA/NV (<http://acsone.eu>)
|
# Copyright 2015 ACSONE SA/NV (<http://acsone.eu>)
|
||||||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
|
# 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):
|
class IrActionsReportXml(models.Model):
|
||||||
|
|
|
@ -4,8 +4,8 @@
|
||||||
|
|
||||||
from cStringIO import StringIO
|
from cStringIO import StringIO
|
||||||
|
|
||||||
from openerp.report.report_sxw import report_sxw
|
from odoo.report.report_sxw import report_sxw
|
||||||
from openerp.api import Environment
|
from odoo.api import Environment
|
||||||
|
|
||||||
import logging
|
import logging
|
||||||
_logger = logging.getLogger(__name__)
|
_logger = logging.getLogger(__name__)
|
||||||
|
|
Loading…
Reference in New Issue