[CHG] Rename base_report_xlsx to report_xlsx and add xlsx report type in selection

This commit is contained in:
Adrien Peiffer (ACSONE)
2016-04-04 20:28:23 +02:00
committed by Alex Cuellar
parent f25ed2d685
commit b0ecea8464
8 changed files with 161 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
# -*- coding: utf-8 -*-
# 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
class IrActionsReportXml(models.Model):
_inherit = 'ir.actions.report.xml'
report_type = fields.Selection(selection_add=[("xlsx", "xlsx")])