mirror of
https://github.com/OCA/reporting-engine.git
synced 2025-02-16 16:30:38 +02:00
[CHG] Rename base_report_xlsx to report_xlsx and add xlsx report type in selection
This commit is contained in:
committed by
Alex Cuellar
parent
f25ed2d685
commit
b0ecea8464
11
report_xlsx/models/ir_report.py
Normal file
11
report_xlsx/models/ir_report.py
Normal 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")])
|
||||
Reference in New Issue
Block a user