mirror of
https://github.com/bringout/oca-report.git
synced 2026-04-20 06:41:59 +02:00
Initial commit: OCA Report packages (45 packages)
This commit is contained in:
commit
2f4db400df
2543 changed files with 469120 additions and 0 deletions
|
|
@ -0,0 +1,4 @@
|
|||
# Copyright 2019 Ecosoft Co., Ltd (http://ecosoft.co.th/)
|
||||
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html)
|
||||
|
||||
from . import print_report_wizard
|
||||
|
|
@ -0,0 +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 api, fields, models
|
||||
|
||||
|
||||
class PrintReportWizard(models.TransientModel):
|
||||
_name = "print.report.wizard"
|
||||
_description = "Print Report Wizard"
|
||||
|
||||
reference = fields.Reference(
|
||||
string="Document",
|
||||
selection="_reference_models",
|
||||
required=True,
|
||||
)
|
||||
action_report_id = fields.Many2one(
|
||||
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),
|
||||
]
|
||||
)
|
||||
return [(model.model, model.name) for model in models]
|
||||
|
||||
@api.onchange("reference")
|
||||
def _onchange_reference(self):
|
||||
self.ensure_one()
|
||||
domain = [("id", "in", [])]
|
||||
self.action_report_id = False
|
||||
if self.reference:
|
||||
domain = [("model", "=", self.reference._name)]
|
||||
return {"domain": {"action_report_id": domain}}
|
||||
|
||||
def print_report(self):
|
||||
self.ensure_one()
|
||||
return self.action_report_id.report_action(self.reference, config=False)
|
||||
|
|
@ -0,0 +1,37 @@
|
|||
<?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>
|
||||
<field name="arch" type="xml">
|
||||
<form>
|
||||
<group>
|
||||
<group>
|
||||
<field name="reference" />
|
||||
</group>
|
||||
<group>
|
||||
<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" />
|
||||
</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_mode">form</field>
|
||||
<field name="target">new</field>
|
||||
</record>
|
||||
</odoo>
|
||||
Loading…
Add table
Add a link
Reference in a new issue