mirror of
https://gitlab.com/flectra-community/account-financial-reporting.git
synced 2024-11-15 02:02:04 +00:00
95 lines
3.3 KiB
Python
95 lines
3.3 KiB
Python
# Copyright 2018 ForgeFlow, S.L. (https://www.forgeflow.com)
|
|
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html).
|
|
|
|
from flectra.tests import new_test_user
|
|
from flectra.tests.common import TransactionCase
|
|
|
|
|
|
class TestOutstandingStatement(TransactionCase):
|
|
"""Tests for Outstanding Statement."""
|
|
|
|
@classmethod
|
|
def setUpClass(cls):
|
|
super().setUpClass()
|
|
cls.env = cls.env(
|
|
context=dict(
|
|
cls.env.context,
|
|
mail_create_nolog=True,
|
|
mail_create_nosubscribe=True,
|
|
mail_notrack=True,
|
|
no_reset_password=True,
|
|
tracking_disable=True,
|
|
)
|
|
)
|
|
cls.res_users_model = cls.env["res.users"]
|
|
cls.company = cls.env.ref("base.main_company")
|
|
cls.company.external_report_layout_id = cls.env.ref(
|
|
"web.external_layout_standard"
|
|
)
|
|
cls.partner1 = cls.env.ref("base.res_partner_2")
|
|
cls.partner2 = cls.env.ref("base.res_partner_3")
|
|
cls.user = new_test_user(
|
|
cls.env, login="user_1", groups="account.group_account_user"
|
|
)
|
|
cls.statement_model = cls.env["report.partner_statement.outstanding_statement"]
|
|
cls.wiz = cls.env["outstanding.statement.wizard"]
|
|
cls.report_name = "partner_statement.outstanding_statement"
|
|
cls.report_name_xlsx = "p_s.report_outstanding_statement_xlsx"
|
|
cls.report_title = "Outstanding Statement"
|
|
|
|
def test_customer_outstanding_statement(self):
|
|
wiz_id = self.wiz.with_context(
|
|
active_ids=[self.partner1.id, self.partner2.id]
|
|
).create({})
|
|
wiz_id.aging_type = "months"
|
|
|
|
statement = wiz_id.button_export_pdf()
|
|
|
|
self.assertDictEqual(
|
|
statement,
|
|
{
|
|
**{
|
|
"type": "ir.actions.report",
|
|
"report_name": self.report_name,
|
|
"report_type": "qweb-pdf",
|
|
},
|
|
**statement,
|
|
},
|
|
"There was an error and the PDF report was not generated.",
|
|
)
|
|
|
|
statement_xlsx = wiz_id.button_export_xlsx()
|
|
|
|
self.assertDictEqual(
|
|
statement_xlsx,
|
|
{
|
|
**{
|
|
"type": "ir.actions.report",
|
|
"report_name": self.report_name_xlsx,
|
|
"report_type": "xlsx",
|
|
},
|
|
**statement_xlsx,
|
|
},
|
|
"There was an error and the PDF report was not generated.",
|
|
)
|
|
|
|
data = wiz_id._prepare_statement()
|
|
docids = data["partner_ids"]
|
|
report = self.statement_model._get_report_values(docids, data)
|
|
self.assertIsInstance(
|
|
report, dict, "There was an error while compiling the report."
|
|
)
|
|
self.assertIn(
|
|
"bucket_labels", report, "There was an error while compiling the report."
|
|
)
|
|
|
|
def test_customer_outstanding_report_no_wizard(self):
|
|
docids = [self.partner1.id]
|
|
report = self.statement_model._get_report_values(docids, False)
|
|
self.assertIsInstance(
|
|
report, dict, "There was an error while compiling the report."
|
|
)
|
|
self.assertIn(
|
|
"bucket_labels", report, "There was an error while compiling the report."
|
|
)
|