report_async: migration to 15.0

pull/738/head
Hardik-OSI 2022-06-03 11:34:05 +05:30 committed by Nikul-OSI
parent feb9f2b953
commit f25e94fece
2 changed files with 5 additions and 7 deletions

View File

@ -6,7 +6,7 @@
<field
name="email_from"
>${object.company_id.partner_id.email_formatted|safe}</field>
<field name="partner_to">${user.partner_id.id}</field>
<field name="partner_to">{{ user.partner_id.id }}</field>
<field name="body_html" type="html">
<table
border="0"

View File

@ -14,14 +14,11 @@ class TestJobChannel(common.TransactionCase):
def _print_wizard(self, res):
obj = self.env[res["res_model"]]
ctx = {
"active_model": self.print_doc._name,
"active_id": self.print_doc.id,
}
ctx.update(res["context"])
with Form(
obj.with_context(
active_model=self.print_doc._name, active_id=self.print_doc.id
active_model=self.print_doc._name,
active_id=self.print_doc.id,
async_process=res["context"].get("async_process"),
)
) as form:
form.reference = "{},{}".format(self.test_rec._name, self.test_rec.id)
@ -37,6 +34,7 @@ class TestJobChannel(common.TransactionCase):
def test_2_run_async(self):
"""Run background will return nothing, job started"""
self.print_doc.write({"allow_async": False})
with self.assertRaises(UserError):
self.print_doc.run_async()
self.print_doc.write({"allow_async": True, "email_notify": True})