account-financial-reporting/partner_statement/wizard/outstanding_statement_wizard.py

33 lines
1.0 KiB
Python
Raw Normal View History

2021-11-14 03:10:44 +00:00
# Copyright 2018 ForgeFlow, S.L. (http://www.forgeflow.com)
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html).
from flectra import models
class OutstandingStatementWizard(models.TransientModel):
"""Outstanding Statement wizard."""
_name = "outstanding.statement.wizard"
_inherit = "statement.common.wizard"
_description = "Outstanding Statement Wizard"
2021-12-19 03:11:29 +00:00
def _print_report(self, report_type):
self.ensure_one()
2021-11-14 03:10:44 +00:00
data = self._prepare_statement()
2021-12-19 03:11:29 +00:00
if report_type == "xlsx":
report_name = "p_s.report_outstanding_statement_xlsx"
else:
report_name = "partner_statement.outstanding_statement"
return (
self.env["ir.actions.report"]
.search(
[("report_name", "=", report_name), ("report_type", "=", report_type)],
limit=1,
)
.report_action(self, data=data)
)
def _export(self, report_type):
"""Default export is PDF."""
return self._print_report(report_type)