sebalix
9 years ago
committed by
Enric Tobella
No known key found for this signature in database
GPG Key ID: 1A2546A1B7BA2451
2 changed files with
3 additions and
2 deletions
-
report_xlsx/models/ir_report.py
-
report_xlsx/report/report_xlsx.py
|
|
@ -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 api, fields, models |
|
|
|
from openerp import fields, models |
|
|
|
|
|
|
|
|
|
|
|
class IrActionsReportXml(models.Model): |
|
|
|
|
|
@ -2,9 +2,10 @@ |
|
|
|
# Copyright 2015 ACSONE SA/NV (<http://acsone.eu>) |
|
|
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). |
|
|
|
|
|
|
|
from cStringIO import StringIO |
|
|
|
|
|
|
|
from openerp.report.report_sxw import report_sxw |
|
|
|
from openerp.api import Environment |
|
|
|
from cStringIO import StringIO |
|
|
|
|
|
|
|
import logging |
|
|
|
_logger = logging.getLogger(__name__) |
|
|
|