[IMP] report_async: black, isort, prettier

This commit is contained in:
newtratip
2021-12-20 15:29:29 +07:00
committed by Kitti U
parent e0f8b7b531
commit 266f4b1933
17 changed files with 359 additions and 646 deletions

View File

@@ -1,43 +1,45 @@
# 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',
string="Document",
selection="_reference_models",
required=True,
)
action_report_id = fields.Many2one(
comodel_name='ir.actions.report',
string='Report Template',
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,29 +7,31 @@
<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>
<field name="view_type">form</field>
<field name="view_mode">form</field>
<field name="target">new</field>
</record>
</odoo>