[IMP] report_async: black, isort, prettier

pull/429/head
Saran440 2020-09-03 11:15:33 +07:00 committed by Kitti U
parent 7e838920f6
commit d4afffff27
12 changed files with 343 additions and 257 deletions

View File

@ -1,27 +1,23 @@
# Copyright 2019 Ecosoft Co., Ltd (http://ecosoft.co.th/)
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html)
{
'name': 'Report Async',
'summary': 'Central place to run reports live or async',
'version': '12.0.1.0.1',
'author': 'Ecosoft, Odoo Community Association (OCA)',
'license': 'AGPL-3',
'website': 'https://github.com/OCA/reporting-engine',
'category': 'Generic Modules',
'depends': [
'queue_job',
"name": "Report Async",
"summary": "Central place to run reports live or async",
"version": "12.0.1.0.1",
"author": "Ecosoft, Odoo Community Association (OCA)",
"license": "AGPL-3",
"website": "https://github.com/OCA/reporting-engine",
"category": "Generic Modules",
"depends": ["queue_job"],
"data": [
"security/ir.model.access.csv",
"security/ir_rule.xml",
"data/mail_template.xml",
"views/report_async.xml",
"wizard/print_report_wizard.xml",
],
'data': [
'security/ir.model.access.csv',
'security/ir_rule.xml',
'data/mail_template.xml',
'views/report_async.xml',
'wizard/print_report_wizard.xml',
],
'demo': [
'demo/report_async_demo.xml',
],
'installable': True,
'maintainers': ['kittiu'],
'development_status': 'Beta',
"demo": ["demo/report_async_demo.xml"],
"installable": True,
"maintainers": ["kittiu"],
"development_status": "Beta",
}

View File

@ -1,32 +1,59 @@
<?xml version="1.0" encoding="utf-8"?>
<?xml version="1.0" encoding="utf-8" ?>
<odoo>
<data noupdate="1">
<record id="async_report_delivery" model="mail.template">
<field name="name">Report Async: New Report Available</field>
<field name="model_id" ref="base.model_ir_attachment"/>
<field name="model_id" ref="base.model_ir_attachment" />
<field name="subject">Your report is available, ${object.name}</field>
<field name="email_from">${object.company_id.partner_id.email_formatted|safe}</field>
<field
name="email_from"
>${object.company_id.partner_id.email_formatted|safe}</field>
<field name="partner_to">${user.partner_id.id}</field>
<field name="body_html" type="html">
<table border="0" cellpadding="0" cellspacing="0" style="background-color: #F1F1F1; font-family:Verdana, Arial,sans-serif; color: #454748; width: 100%; border-collapse:separate;">
<table
border="0"
cellpadding="0"
cellspacing="0"
style="background-color: #F1F1F1; font-family:Verdana, Arial,sans-serif; color: #454748; width: 100%; border-collapse:separate;"
>
<tr>
<td align="center">
<table border="0" cellpadding="0" cellspacing="0" width="590" style="padding: 16px; background-color: white; color: #454748; border-collapse:separate;">
<table
border="0"
cellpadding="0"
cellspacing="0"
width="590"
style="padding: 16px; background-color: white; color: #454748; border-collapse:separate;"
>
<tbody>
<tr>
<td align="center" style="min-width: 590px;">
<table border="0" cellpadding="0" cellspacing="0" width="590" style="min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;">
<table
border="0"
cellpadding="0"
cellspacing="0"
width="590"
style="min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;"
>
<tr>
<td valign="top" style="font-size: 13px;">
<td
valign="top"
style="font-size: 13px;"
>
% set base_url = object.env['ir.config_parameter'].sudo().get_param('web.base.url')
% set download_url = '%s/web/content/ir.attachment/%s/datas/%s?download=true' % (base_url, object.id, object.name, )
<div>
Dear ${object.create_uid.partner_id.name or ''},
<br/><br/>
Your requested report, ${object.name}, is available for <b><a href='${download_url}'>download</a></b>.
<br/><br/>
<br /><br />
Your requested report, ${object.name}, is available for <b
>
<a
href='${download_url}'
>download</a>
</b>.
<br /><br />
Have a nice day!<br />
--<br/>${object.company_id.name}
--<br />${object.company_id.name}
</div>
</td>
</tr>
@ -37,10 +64,10 @@
</table>
</td>
</tr>
</table>
</table>
</field>
<field name="auto_delete" eval="True"/>
<field name="user_signature" eval="False"/>
<field name="auto_delete" eval="True" />
<field name="user_signature" eval="False" />
</record>
</data>
</odoo>

View File

@ -1,9 +1,7 @@
<?xml version="1.0" encoding="UTF-8" ?>
<odoo>
<record id="report_async_print_document" model="report.async">
<field name="action_id" eval="ref('report_async.action_print_report_wizard')"/>
<field name="allow_async" eval="0"/>
<field name="action_id" eval="ref('report_async.action_print_report_wizard')" />
<field name="allow_async" eval="0" />
</record>
</odoo>

View File

@ -3,26 +3,22 @@
from odoo import api, models
# Define all supported report_type
REPORT_TYPES = ['qweb-pdf', 'qweb-text',
'qweb-xml', 'csv',
'excel', 'xlsx']
REPORT_TYPES = ["qweb-pdf", "qweb-text", "qweb-xml", "csv", "excel", "xlsx"]
class Report(models.Model):
_inherit = 'ir.actions.report'
_inherit = "ir.actions.report"
@api.noguess
def report_action(self, docids, data=None, config=True):
res = super(Report, self).report_action(docids, data=data,
config=config)
if res['context'].get('async_process', False):
rpt_async_id = res['context']['active_id']
report_async = self.env['report.async'].browse(rpt_async_id)
if res['report_type'] in REPORT_TYPES:
res = super(Report, self).report_action(docids, data=data, config=config)
if res["context"].get("async_process", False):
rpt_async_id = res["context"]["active_id"]
report_async = self.env["report.async"].browse(rpt_async_id)
if res["report_type"] in REPORT_TYPES:
report_async.with_delay().run_report(
res['context'].get('active_ids', []), data,
self.id, self._uid)
res["context"].get("active_ids", []), data, self.id, self._uid
)
return {}
return res

View File

@ -2,93 +2,98 @@
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html)
import base64
from odoo import api, fields, models, _
from odoo.tools.safe_eval import safe_eval
from odoo import _, api, fields, models
from odoo.exceptions import UserError
from odoo.tools.safe_eval import safe_eval
from odoo.addons.queue_job.job import job
# Define all supported report_type
REPORT_TYPES_FUNC = {'qweb-pdf': 'render_qweb_pdf',
'qweb-text': 'render_qweb_text',
'qweb-xml': 'render_qweb_xml',
'csv': 'render_csv',
'excel': 'render_excel',
'xlsx': 'render_xlsx', }
REPORT_TYPES_FUNC = {
"qweb-pdf": "render_qweb_pdf",
"qweb-text": "render_qweb_text",
"qweb-xml": "render_qweb_xml",
"csv": "render_csv",
"excel": "render_excel",
"xlsx": "render_xlsx",
}
class ReportAsync(models.Model):
_name = 'report.async'
_description = 'Report Async'
_name = "report.async"
_description = "Report Async"
action_id = fields.Many2one(
comodel_name='ir.actions.act_window',
string='Reports',
required=True,
comodel_name="ir.actions.act_window", string="Reports", required=True,
)
allow_async = fields.Boolean(
string='Allow Async',
string="Allow Async",
default=False,
help="This is not automatic field, please check if you want to allow "
"this report in background process",
)
name = fields.Char(
string='Name',
related='action_id.display_name',
)
name = fields.Char(string="Name", related="action_id.display_name",)
email_notify = fields.Boolean(
string='Email Notification',
string="Email Notification",
help="Send email with link to report, when it is ready",
)
group_ids = fields.Many2many(
string='Groups',
comodel_name='res.groups',
string="Groups",
comodel_name="res.groups",
help="Only user in selected groups can use this report."
"If left blank, everyone can use",
)
job_ids = fields.Many2many(
comodel_name='queue.job',
compute='_compute_job',
comodel_name="queue.job",
compute="_compute_job",
help="List all jobs related to this running report",
)
job_status = fields.Selection(
selection=[('pending', 'Pending'),
('enqueued', 'Enqueued'),
('started', 'Started'),
('done', 'Done'),
('failed', 'Failed')],
compute='_compute_job',
selection=[
("pending", "Pending"),
("enqueued", "Enqueued"),
("started", "Started"),
("done", "Done"),
("failed", "Failed"),
],
compute="_compute_job",
help="Latest Job Status",
)
job_info = fields.Text(
compute='_compute_job',
help="Latest Job Error Message",
)
job_info = fields.Text(compute="_compute_job", help="Latest Job Error Message",)
file_ids = fields.Many2many(
comodel_name='ir.attachment',
compute='_compute_file',
comodel_name="ir.attachment",
compute="_compute_file",
help="List all files created by this report background process",
)
@api.multi
def _compute_job(self):
for rec in self:
rec.job_ids = self.sudo().env['queue.job'].search(
[('func_string', 'like', 'report.async(%s,)' % rec.id),
('user_id', '=', self._uid)],
order='id desc')
rec.job_status = (rec.job_ids[0].sudo().state
if rec.job_ids else False)
rec.job_info = (rec.job_ids[0].sudo().exc_info
if rec.job_ids else False)
rec.job_ids = (
self.sudo()
.env["queue.job"]
.search(
[
("func_string", "like", "report.async(%s,)" % rec.id),
("user_id", "=", self._uid),
],
order="id desc",
)
)
rec.job_status = rec.job_ids[0].sudo().state if rec.job_ids else False
rec.job_info = rec.job_ids[0].sudo().exc_info if rec.job_ids else False
@api.multi
def _compute_file(self):
files = self.env['ir.attachment'].search(
[('res_model', '=', 'report.async'),
('res_id', 'in', self.ids),
('create_uid', '=', self._uid)],
order='id desc')
files = self.env["ir.attachment"].search(
[
("res_model", "=", "report.async"),
("res_id", "in", self.ids),
("create_uid", "=", self._uid),
],
order="id desc",
)
for rec in self:
rec.file_ids = files.filtered(lambda l: l.res_id == rec.id)
@ -96,67 +101,76 @@ class ReportAsync(models.Model):
self.ensure_one()
action = self.env.ref(self.action_id.xml_id)
result = action.read()[0]
ctx = safe_eval(result.get('context', {}))
ctx.update({'async_process': False})
result['context'] = ctx
ctx = safe_eval(result.get("context", {}))
ctx.update({"async_process": False})
result["context"] = ctx
return result
@api.multi
def run_async(self):
self.ensure_one()
if not self.allow_async:
raise UserError(_('Background process not allowed.'))
raise UserError(_("Background process not allowed."))
action = self.env.ref(self.action_id.xml_id)
result = action.read()[0]
ctx = safe_eval(result.get('context', {}))
ctx.update({'async_process': True})
result['context'] = ctx
ctx = safe_eval(result.get("context", {}))
ctx.update({"async_process": True})
result["context"] = ctx
return result
@api.multi
def view_files(self):
self.ensure_one()
action = self.env.ref('report_async.action_view_files')
action = self.env.ref("report_async.action_view_files")
result = action.read()[0]
result['domain'] = [('id', 'in', self.file_ids.ids)]
result["domain"] = [("id", "in", self.file_ids.ids)]
return result
@api.multi
def view_jobs(self):
self.ensure_one()
action = self.env.ref('queue_job.action_queue_job')
action = self.env.ref("queue_job.action_queue_job")
result = action.read()[0]
result['domain'] = [('id', 'in', self.job_ids.ids)]
result['context'] = {}
result["domain"] = [("id", "in", self.job_ids.ids)]
result["context"] = {}
return result
@api.model
@job
def run_report(self, docids, data, report_id, user_id):
report = self.env['ir.actions.report'].browse(report_id)
report = self.env["ir.actions.report"].browse(report_id)
func = REPORT_TYPES_FUNC[report.report_type]
# Run report
out_file, file_ext = getattr(report, func)(docids, data)
out_file = base64.b64encode(out_file)
out_name = '%s.%s' % (report.name, file_ext)
out_name = "{}.{}".format(report.name, file_ext)
# Save report to attachment
attachment = self.env['ir.attachment'].sudo().create({
'name': out_name,
'datas': out_file,
'datas_fname': out_name,
'type': 'binary',
'res_model': 'report.async',
'res_id': self.id,
})
self._cr.execute("""
attachment = (
self.env["ir.attachment"]
.sudo()
.create(
{
"name": out_name,
"datas": out_file,
"datas_fname": out_name,
"type": "binary",
"res_model": "report.async",
"res_id": self.id,
}
)
)
self._cr.execute(
"""
UPDATE ir_attachment SET create_uid = %s, write_uid = %s
WHERE id = %s""", (self._uid, self._uid, attachment.id))
WHERE id = %s""",
(self._uid, self._uid, attachment.id),
)
# Send email
if self.email_notify:
self._send_email(attachment)
def _send_email(self, attachment):
template = self.env.ref('report_async.async_report_delivery')
template.send_mail(attachment.id,
notif_layout='mail.mail_notification_light',
force_send=False)
template = self.env.ref("report_async.async_report_delivery")
template.send_mail(
attachment.id, notif_layout="mail.mail_notification_light", force_send=False
)

View File

@ -1,23 +1,25 @@
<?xml version="1.0" encoding="utf-8"?>
<?xml version="1.0" encoding="utf-8" ?>
<odoo>
<record id="rule_report_async_access_by_group" model="ir.rule">
<field name="name">Report Async by Groups</field>
<field name="model_id" ref="model_report_async"/>
<field name="groups" eval="[(4, ref('base.group_user'))]"/>
<field name="perm_read" eval="True"/>
<field name="perm_create" eval="False"/>
<field name="perm_write" eval="False"/>
<field name="perm_unlink" eval="False"/>
<field name="domain_force">['|', ('group_ids', '=', False), ('group_ids', 'in', [g.id for g in user.groups_id])]</field>
<field name="model_id" ref="model_report_async" />
<field name="groups" eval="[(4, ref('base.group_user'))]" />
<field name="perm_read" eval="True" />
<field name="perm_create" eval="False" />
<field name="perm_write" eval="False" />
<field name="perm_unlink" eval="False" />
<field
name="domain_force"
>['|', ('group_ids', '=', False), ('group_ids', 'in', [g.id for g in user.groups_id])]</field>
</record>
<record id="rule_report_async_access_all" model="ir.rule">
<field name="name">Report Async by Groups</field>
<field name="model_id" ref="model_report_async"/>
<field name="groups" eval="[(4, ref('base.group_no_one'))]"/>
<field name="perm_read" eval="True"/>
<field name="perm_create" eval="True"/>
<field name="perm_write" eval="True"/>
<field name="perm_unlink" eval="True"/>
<field name="model_id" ref="model_report_async" />
<field name="groups" eval="[(4, ref('base.group_no_one'))]" />
<field name="perm_read" eval="True" />
<field name="perm_create" eval="True" />
<field name="perm_write" eval="True" />
<field name="perm_unlink" eval="True" />
<field name="domain_force">[(1,'=', 1)]</field>
</record>
</odoo>

View File

@ -1,26 +1,26 @@
# Copyright 2019 Ecosoft Co., Ltd (http://ecosoft.co.th/)
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html)
from odoo.exceptions import UserError
from odoo.tests import common
from odoo.tests.common import Form
from odoo.exceptions import UserError
class TestJobChannel(common.TransactionCase):
def setUp(self):
super(TestJobChannel, self).setUp()
self.print_doc = self.env.ref('report_async.'
'report_async_print_document')
self.test_rec = self.env.ref('base.module_mail')
self.test_rpt = self.env.ref('base.ir_module_reference_print')
self.print_doc = self.env.ref("report_async." "report_async_print_document")
self.test_rec = self.env.ref("base.module_mail")
self.test_rpt = self.env.ref("base.ir_module_reference_print")
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'])
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(ctx)) as form:
form.reference = '%s,%s' % (self.test_rec._name, self.test_rec.id)
form.reference = "{},{}".format(self.test_rec._name, self.test_rec.id)
form.action_report_id = self.test_rpt
print_wizard = form.save()
return print_wizard
@ -29,19 +29,18 @@ class TestJobChannel(common.TransactionCase):
"""Run now will return report action as normal"""
res = self.print_doc.run_now()
report_action = self._print_wizard(res).print_report()
self.assertEquals(report_action['type'], 'ir.actions.report')
self.assertEquals(report_action["type"], "ir.actions.report")
def test_2_run_async(self):
"""Run background will return nothing, job started"""
with self.assertRaises(UserError):
self.print_doc.run_async()
self.print_doc.write({'allow_async': True,
'email_notify': True})
self.print_doc.write({"allow_async": True, "email_notify": True})
res = self.print_doc.run_async()
print_wizard = self._print_wizard(res)
report_action = print_wizard.print_report()
self.assertEquals(report_action, {}) # Do not run report yet
self.assertEquals(self.print_doc.job_status, 'pending') # Job started
self.assertEquals(self.print_doc.job_status, "pending") # Job started
# Test produce file (as queue will not run in test mode)
docids = [print_wizard.reference.id]
data = None

View File

@ -1,104 +1,151 @@
<?xml version="1.0" encoding="utf-8"?>
<?xml version="1.0" encoding="utf-8" ?>
<odoo>
<record id="view_report_async_tree" model="ir.ui.view">
<field name="name">report.async.tree</field>
<field name="model">report.async</field>
<field name="arch" type="xml">
<tree string="Report Center">
<field name="action_id"/>
<button type="object" name="run_now" string="Run Now" icon="fa-bolt"/>
<button type="object" name="run_async" string="Run Background" icon="fa-cogs"
attrs="{'invisible': [('allow_async', '=', False)]}"/>
<button type="object" name="view_files" string="Files" icon="fa-copy"
attrs="{'invisible': [('allow_async', '=', False)]}"/>
<field name="allow_async" invisible="1"/>
<field name="job_status"
attrs="{'invisible': [('allow_async', '=', False)]}"/>
<field name="email_notify"/>
<field name="action_id" />
<button type="object" name="run_now" string="Run Now" icon="fa-bolt" />
<button
type="object"
name="run_async"
string="Run Background"
icon="fa-cogs"
attrs="{'invisible': [('allow_async', '=', False)]}"
/>
<button
type="object"
name="view_files"
string="Files"
icon="fa-copy"
attrs="{'invisible': [('allow_async', '=', False)]}"
/>
<field name="allow_async" invisible="1" />
<field
name="job_status"
attrs="{'invisible': [('allow_async', '=', False)]}"
/>
<field name="email_notify" />
</tree>
</field>
</record>
<record id="view_report_async_form" model="ir.ui.view">
<field name="name">report.async.form</field>
<field name="model">report.async</field>
<field name="arch" type="xml">
<form>
<div class="alert alert-warning"
<div
class="alert alert-warning"
role="alert"
attrs="{'invisible': ['|', ('job_status', 'in', ['done', 'failed', False]),
('allow_async', '=', False)]}"
style="margin-bottom:0px;">
style="margin-bottom:0px;"
>
<p>
The report will be running by <i class="fa fa-cogs"/>
The report will be running by <i class="fa fa-cogs" />
<b>job</b>, and will be available at
<i class="fa fa-copy"/><b> Files</b>
<i class="fa fa-copy" /><b> Files</b>
</p>
</div>
<div class="alert alert-danger"
<div
class="alert alert-danger"
role="alert"
attrs="{'invisible': ['|', ('job_status', '!=', 'failed'),
('allow_async', '=', False)]}"
style="margin-bottom:0px;">
style="margin-bottom:0px;"
>
<p>
The last <i class="fa fa-cogs"/> <b>running job</b> was failed.
The last <i class="fa fa-cogs" /> <b>running job</b> was failed.
Please contact your system administrator.
</p>
</div>
<div class="alert alert-success"
<div
class="alert alert-success"
role="alert"
attrs="{'invisible': ['|', ('job_status', '!=', 'done'),
('allow_async', '=', False)]}"
style="margin-bottom:0px;">
style="margin-bottom:0px;"
>
<p>
The last <i class="fa fa-cogs"/> <b>running job</b> was succeed.
You can check the result in <i class="fa fa-copy"/><b> Files</b>
The last <i class="fa fa-cogs" /> <b
>running job</b> was succeed.
You can check the result in <i class="fa fa-copy" /><b
> Files</b>
</p>
</div>
<sheet>
<div class="oe_read_only oe_right oe_button_box" name="buttons">
<button type="object" name="run_now" string="Run Now" icon="fa-bolt"/>
<button type="object" name="run_async" string="Run Background" icon="fa-cogs"
attrs="{'invisible': [('allow_async', '=', False)]}"/>
<button type="object" name="view_files" string="Files" icon="fa-copy"
attrs="{'invisible': [('allow_async', '=', False)]}"/>
<button type="object" name="view_jobs" string="Jobs" icon="fa-align-justify"
<button
type="object"
name="run_now"
string="Run Now"
icon="fa-bolt"
/>
<button
type="object"
name="run_async"
string="Run Background"
icon="fa-cogs"
attrs="{'invisible': [('allow_async', '=', False)]}"
/>
<button
type="object"
name="view_files"
string="Files"
icon="fa-copy"
attrs="{'invisible': [('allow_async', '=', False)]}"
/>
<button
type="object"
name="view_jobs"
string="Jobs"
icon="fa-align-justify"
groups="queue_job.group_queue_job_manager"
attrs="{'invisible': [('allow_async', '=', False)]}"/>
attrs="{'invisible': [('allow_async', '=', False)]}"
/>
</div>
<group>
<group>
<field name="action_id" options="{'no_open': True, 'no_create_edit': True}" />
<field name="allow_async"/>
<field name="email_notify"
attrs="{'invisible': [('allow_async', '=', False)]}"/>
<field
name="action_id"
options="{'no_open': True, 'no_create_edit': True}"
/>
<field name="allow_async" />
<field
name="email_notify"
attrs="{'invisible': [('allow_async', '=', False)]}"
/>
</group>
<group>
<field name="job_status"
attrs="{'invisible': [('allow_async', '=', False)]}"/>
<field name="group_ids" widget="many2many_tags"/>
<field
name="job_status"
attrs="{'invisible': [('allow_async', '=', False)]}"
/>
<field name="group_ids" widget="many2many_tags" />
</group>
<group name="job_info" string="Last Run Job Error" colspan="2"
attrs="{'invisible': ['|', ('job_info', '=', False), ('allow_async', '=', False)]}">
<field nolabel="1" name="job_info"/>
<group
name="job_info"
string="Last Run Job Error"
colspan="2"
attrs="{'invisible': ['|', ('job_info', '=', False), ('allow_async', '=', False)]}"
>
<field nolabel="1" name="job_info" />
</group>
</group>
</sheet>
</form>
</field>
</record>
<record id="view_report_async_search" model="ir.ui.view">
<field name="name">report.async.search</field>
<field name="model">report.async</field>
<field name="arch" type="xml">
<search string="Report Center">
<field name="action_id"/>
<field name="action_id" />
</search>
</field>
</record>
<record id="action_report_async" model="ir.actions.act_window">
<field name="name">Report Center</field>
<field name="type">ir.actions.act_window</field>
@ -106,28 +153,27 @@
<field name="view_type">form</field>
<field name="help">Run reports asyncronously</field>
</record>
<menuitem
id="menu_report_async"
parent="base.menu_board_root"
action="action_report_async"
sequence="10"/>
sequence="10"
/>
<record id="action_view_files" model="ir.actions.act_window">
<field name="name">Report Files</field>
<field name="type">ir.actions.act_window</field>
<field name="res_model">ir.attachment</field>
<field name="view_type">form</field>
<field name="view_id" eval="False"/>
<field name="search_view_id" ref="base.view_attachment_search"/>
<field name="view_id" eval="False" />
<field name="search_view_id" ref="base.view_attachment_search" />
<field name="view_mode">kanban,tree,form</field>
<field name="domain">[('res_model', '=', 'report.async'), ('create_uid', '=', uid)]</field>
<field
name="domain"
>[('res_model', '=', 'report.async'), ('create_uid', '=', uid)]</field>
<field name="help" type="html">
<p class="o_view_nocontent_smiling_face">
No files found
</p>
</field>
</record>
</odoo>

View File

@ -1,43 +1,42 @@
# 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 fields, models, api
from odoo import api, fields, models
class PrintReportWizard(models.TransientModel):
_name = 'print.report.wizard'
_description = 'Print Report Wizard'
_name = "print.report.wizard"
_description = "Print Report Wizard"
reference = fields.Reference(
string='Document',
selection='_reference_models',
required=True,
string="Document", selection="_reference_models", required=True,
)
action_report_id = fields.Many2one(
comodel_name='ir.actions.report',
string='Report Template',
required=True,
comodel_name="ir.actions.report", string="Report Template", required=True,
)
@api.model
def _reference_models(self):
excludes = ['res.company']
models = self.env['ir.model'].search([
('state', '!=', 'manual'), ('transient', '=', False),
('model', 'not in', excludes)])
excludes = ["res.company"]
models = self.env["ir.model"].search(
[
("state", "!=", "manual"),
("transient", "=", False),
("model", "not in", excludes),
]
)
return [(model.model, model.name) for model in models]
@api.onchange('reference')
@api.onchange("reference")
def _onchange_reference(self):
self.ensure_one()
domain = [('id', 'in', [])]
domain = [("id", "in", [])]
self.action_report_id = False
if self.reference:
domain = [('model', '=', self.reference._name)]
return {'domain': {'action_report_id': domain}}
domain = [("model", "=", self.reference._name)]
return {"domain": {"action_report_id": domain}}
@api.multi
def print_report(self):
self.ensure_one()
return self.action_report_id.report_action(self.reference,
config=False)
return self.action_report_id.report_action(self.reference, config=False)

View File

@ -1,6 +1,5 @@
<?xml version="1.0" encoding="UTF-8" ?>
<odoo>
<record id="print_report_wizard" model="ir.ui.view">
<field name="name">print.report.wizard</field>
<field name="model">print.report.wizard</field>
@ -8,23 +7,27 @@
<form>
<group>
<group>
<field name="reference"/>
<field name="reference" />
</group>
<group>
<field name="action_report_id" options="{'no_open': True, 'no_create_edit': True}"/>
<field
name="action_report_id"
options="{'no_open': True, 'no_create_edit': True}"
/>
</group>
</group>
<footer>
<button name="print_report"
type="object" string="Execute"
class="oe_highlight"/>
<button special="cancel"
string="Cancel"/>
<button
name="print_report"
type="object"
string="Execute"
class="oe_highlight"
/>
<button special="cancel" string="Cancel" />
</footer>
</form>
</field>
</record>
<record id="action_print_report_wizard" model="ir.actions.act_window">
<field name="name">Print Document</field>
<field name="res_model">print.report.wizard</field>
@ -32,5 +35,4 @@
<field name="view_mode">form</field>
<field name="target">new</field>
</record>
</odoo>

View File

@ -0,0 +1 @@
../../../../report_async

View File

@ -0,0 +1,6 @@
import setuptools
setuptools.setup(
setup_requires=['setuptools-odoo'],
odoo_addon=True,
)