mirror of
https://gitlab.com/flectra-community/account-financial-reporting.git
synced 2024-11-15 10:12:05 +00:00
33 lines
1.0 KiB
Python
33 lines
1.0 KiB
Python
# 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"
|
|
|
|
def _print_report(self, report_type):
|
|
self.ensure_one()
|
|
data = self._prepare_statement()
|
|
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)
|