[MIG] report_xlsx_helper: Migration to 15.0

pull/655/head
Luis 2022-01-19 16:44:14 +01:00 committed by Rodrigo
parent 9688c16069
commit fb127bb64e
6 changed files with 19 additions and 12 deletions

View File

@ -6,7 +6,7 @@
"author": "Noviat, Odoo Community Association (OCA)",
"website": "https://github.com/OCA/reporting-engine",
"category": "Reporting",
"version": "14.0.1.0.1",
"version": "15.0.1.0.0",
"license": "AGPL-3",
"depends": ["report_xlsx"],
"installable": True,

View File

@ -32,7 +32,7 @@ class ReportController(ReportController):
context.update(data["context"])
context["report_name"] = reportname
xlsx = report.with_context(context)._render_xlsx(docids, data=data)[0]
xlsx = report.with_context(**context)._render_xlsx(docids, data=data)[0]
report_file = context.get("report_file")
if not report_file:
active_model = context.get("active_model", "export")

View File

@ -14,6 +14,6 @@ class IrActionsReport(models.Model):
report_model_name = "report.{}".format(self.env.context["report_name"])
report_model = self.env.get(report_model_name)
if report_model is None:
raise UserError(_("%s model was not found" % report_model_name))
raise UserError(_("%s model was not found") % report_model_name)
return report_model.create_xlsx_report(docids, data)
return super()._render_xlsx(docids, data)

View File

@ -1,3 +1,5 @@
* Luc De Meyer <luc.demeyer@noviat.com>
* Rattapong Chokmasermkul <rattapongc@ecosoft.co.th>
* Saran Lim. <saranl@ecosoft.co.th>
* `Sinerkia Innovación y Desarrollo S.L. <https://www.sinerkia.com>`_:
* Luis Pomar

View File

@ -38,19 +38,20 @@ class ReportXlsxAbstract(models.AbstractModel):
raise UserError(
_(
"Programming Error:\n\n"
"Excel Sheet name '%s' should not exceed %s characters."
"Excel Sheet name '%(name)s' should not exceed %(max_chars)s "
"characters."
)
% (name, max_chars)
% {"name": name, "max_chars": max_chars}
)
special_chars = pattern.findall(name)
if special_chars:
raise UserError(
_(
"Programming Error:\n\n"
"Excel Sheet name '%s' contains unsupported special "
"characters: '%s'."
"Excel Sheet name '%(name)s' contains unsupported special "
"characters: '%(special_chars)s'."
)
% (name, special_chars)
% {"name": name, "special_chars": special_chars}
)
return name
@ -709,10 +710,14 @@ class ReportXlsxAbstract(models.AbstractModel):
cell_type = "blank"
else:
msg = _(
"%s, _write_line : programming error "
"%(__name__)s, _write_line : programming error "
"detected while processing "
"col_specs_section %s, column %s"
) % (__name__, col_specs_section, col)
"col_specs_section %(col_specs_section)s, column %(col)s"
) % {
"__name__": __name__,
"col_specs_section": col_specs_section,
"col": col,
}
if cell_value:
msg += _(", cellvalue %s") % cell_value
raise UserError(msg)

View File

@ -20,7 +20,7 @@ class TestReportXlsxHelper(TransactionCase):
"active_model": "res.partner",
"active_ids": self.partners.ids,
}
self.report = self.env["ir.actions.report"].with_context(ctx)
self.report = self.env["ir.actions.report"].with_context(**ctx)
def test_report_xlsx_helper(self):
report_xls = self.report._render_xlsx(None, None)