43 lines
1.6 KiB
Python
43 lines
1.6 KiB
Python
# Copyright 2019 Ecosoft Co., Ltd (http://ecosoft.co.th/)
|
|
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html)
|
|
|
|
from odoo import _, api, fields, models
|
|
from odoo.exceptions import UserError
|
|
|
|
|
|
class ReportAction(models.Model):
|
|
_inherit = "ir.actions.report"
|
|
|
|
report_type = fields.Selection(
|
|
selection_add=[("excel", "Excel")], ondelete={"excel": "cascade"}
|
|
)
|
|
|
|
@api.model
|
|
def _render_excel(self, docids, data):
|
|
if len(docids) != 1:
|
|
raise UserError(_("Only one id is allowed for excel_import_export"))
|
|
xlsx_template = self.env["xlsx.template"].search(
|
|
[("fname", "=", self.report_name), ("res_model", "=", self.model)]
|
|
)
|
|
if not xlsx_template or len(xlsx_template) != 1:
|
|
raise UserError(
|
|
_("Template %(report_name)s on model %(model)s is not unique!")
|
|
% {"report_name": self.report_name, "model": self.model}
|
|
)
|
|
Export = self.env["xlsx.export"]
|
|
return Export.export_xlsx(xlsx_template, self.model, docids[0])
|
|
|
|
@api.model
|
|
def _get_report_from_name(self, report_name):
|
|
res = super(ReportAction, self)._get_report_from_name(report_name)
|
|
if res:
|
|
return res
|
|
report_obj = self.env["ir.actions.report"]
|
|
qwebtypes = ["excel"]
|
|
conditions = [
|
|
("report_type", "in", qwebtypes),
|
|
("report_name", "=", report_name),
|
|
]
|
|
context = self.env["res.users"].context_get()
|
|
return report_obj.with_context(**context).search(conditions, limit=1)
|