[MIG] mail_template_multi_attachment: Migration to 16.0

pull/1094/head
SodexisTeam 2023-03-10 18:17:41 +05:30 committed by Sodexis Team
parent fd7ebbcb75
commit ddb0724018
4 changed files with 36 additions and 14 deletions

View File

@ -4,7 +4,7 @@
"name": "Mail template multi attachment",
"summary": """Module who allows to generate multi attachments on
an email template.""",
"version": "13.0.1.0.0",
"version": "16.0.1.0.0",
"license": "AGPL-3",
"author": "ACSONE SA/NV, Odoo Community Association (OCA)",
"website": "https://github.com/OCA/social",

View File

@ -3,6 +3,7 @@
import base64
from odoo import _, exceptions, fields, models
from odoo.tools.safe_eval import safe_eval, time
class MailTemplate(models.Model):
@ -30,21 +31,33 @@ class MailTemplate(models.Model):
if isinstance(res_ids, int):
multi_mode = False
results = {res_ids: results}
self.generate_attachments(results)
return multi_mode and results or results[res_ids]
def generate_attachments(self, results):
# Generate attachments (inspired from Odoo); Just add new attachments
# into 'attachments' key
for res_id, values in results.items():
attachments = values.setdefault("attachments", [])
for template_report in self.template_report_ids:
report_name = self._render_template(
template_report.report_name, template_report.model, res_id
)
report = template_report.report_template_id
print_report_name = (
template_report.report_name or report.print_report_name
)
report_name = False
if print_report_name:
report_name = safe_eval(
print_report_name,
{"object": self.env[self.model].browse(res_id), "time": time},
)
report_service = report.report_name
if report.report_type in ["qweb-html", "qweb-pdf"]:
result, report_format = report.render_qweb_pdf([res_id])
result, report_format = report._render_qweb_pdf(
report, res_ids=[res_id]
)
else:
res = report.render([res_id])
res = report._render(report, res_ids=[res_id])
if not res:
raise exceptions.UserError(
_("Unsupported report type %s found.") % report.report_type
@ -57,4 +70,3 @@ class MailTemplate(models.Model):
if not report_name.endswith(ext):
report_name += ext
attachments.append((report_name, result))
return multi_mode and results or results[res_ids]

View File

@ -1 +1,2 @@
* François Honoré <francois.honore@acsone.eu>
* Sodexis <dev@sodexis.com>

View File

@ -1,9 +1,9 @@
# Copyright 2021 ACSONE SA/NV (<http://acsone.eu>)
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
from odoo.tests.common import SavepointCase
from odoo.tests.common import TransactionCase
class TestMailTemplate(SavepointCase):
class TestMailTemplate(TransactionCase):
"""
Tests for mail.template
"""
@ -23,18 +23,18 @@ class TestMailTemplate(SavepointCase):
"subject": "About ${object.name}",
"body_html": "<p>Hello ${object.name}</p>",
"model_id": cls.env["ir.model"]._get(cls.report1.model).id,
"user_signature": False,
"report_template": cls.report1.id,
"report_name": "Report 1",
"template_report_ids": [
(
0,
False,
{"report_template_id": cls.report2.id, "report_name": "Report 2"},
{"report_template_id": cls.report2.id, "report_name": "'Report 2'"},
),
],
}
cls.mail_template = cls.MailTemplate.create(mail_tmpl_values)
cls.fields = cls.mail_template._fields
def test_multi_generation1(self):
"""
@ -43,7 +43,7 @@ class TestMailTemplate(SavepointCase):
of this module.
:return:
"""
results = self.mail_template.generate_email(self.partner.id)
results = self.mail_template.generate_email(self.partner.id, fields=self.fields)
self.assertEqual(2, len(results.get("attachments")))
def test_multi_generation2(self):
@ -53,7 +53,7 @@ class TestMailTemplate(SavepointCase):
:return:
"""
self.mail_template.write({"template_report_ids": [(6, False, [])]})
results = self.mail_template.generate_email(self.partner.id)
results = self.mail_template.generate_email(self.partner.id, fields=self.fields)
self.assertEqual(1, len(results.get("attachments")))
def test_multi_generation3(self):
@ -63,5 +63,14 @@ class TestMailTemplate(SavepointCase):
:return:
"""
self.mail_template.write({"report_template": False, "report_name": False})
results = self.mail_template.generate_email(self.partner.id)
results = self.mail_template.generate_email(self.partner.id, fields=self.fields)
self.assertEqual(1, len(results.get("attachments")))
def test_multi_generation4(self):
"""
Test generate_email method with unsupported report type
:return:
"""
self.report2.report_type = "qweb-text"
results = self.mail_template.generate_email(self.partner.id, fields=self.fields)
self.assertEqual(2, len(results.get("attachments")))