mirror of
https://gitlab.com/flectra-community/bank-payment.git
synced 2024-11-22 21:52:06 +00:00
64 lines
2.4 KiB
Python
64 lines
2.4 KiB
Python
# Copyright 2016-2020 Akretion (Alexis de Lattre <alexis.delattre@akretion.com>)
|
|
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
|
|
|
|
from dateutil.relativedelta import relativedelta
|
|
|
|
from flectra import fields
|
|
from flectra.exceptions import UserError
|
|
from flectra.tests.common import TransactionCase
|
|
|
|
|
|
class TestMandate(TransactionCase):
|
|
def test_contrains(self):
|
|
with self.assertRaises(UserError):
|
|
self.mandate.recurrent_sequence_type = False
|
|
self.mandate.type = "recurrent"
|
|
self.mandate._check_recurring_type()
|
|
|
|
def test_onchange_bank(self):
|
|
self.mandate.write(
|
|
{"type": "recurrent", "recurrent_sequence_type": "recurring"}
|
|
)
|
|
self.mandate.validate()
|
|
self.mandate.partner_bank_id = self.env.ref(
|
|
"account_payment_mode.res_partner_2_iban"
|
|
)
|
|
self.mandate.mandate_partner_bank_change()
|
|
self.assertEqual(self.mandate.recurrent_sequence_type, "first")
|
|
|
|
def test_expire(self):
|
|
self.mandate.signature_date = fields.Date.today() + relativedelta(months=-50)
|
|
self.mandate.validate()
|
|
self.assertEqual(self.mandate.state, "valid")
|
|
self.env["account.banking.mandate"]._sdd_mandate_set_state_to_expired()
|
|
self.assertEqual(self.mandate.state, "expired")
|
|
|
|
def test_action_mandate_send(self):
|
|
email_ctx = self.mandate.action_mandate_send().get("context", {})
|
|
mail_template = (
|
|
self.env["mail.template"]
|
|
.browse(email_ctx.get("default_template_id"))
|
|
.copy({"auto_delete": False})
|
|
)
|
|
self.mandate.with_context(**email_ctx).message_post_with_source(mail_template)
|
|
mail_message = self.mandate.message_ids[0]
|
|
self.assertEqual(
|
|
self.mandate.partner_id, mail_message.sudo().mail_ids.recipient_ids
|
|
)
|
|
self.assertEqual(self.mandate.state, "draft")
|
|
self.assertTrue(self.mandate.is_sent)
|
|
|
|
def setUp(self):
|
|
res = super().setUp()
|
|
self.partner = self.env.ref("base.res_partner_12")
|
|
bank_account = self.env.ref("account_payment_mode.res_partner_12_iban")
|
|
self.mandate = self.env["account.banking.mandate"].create(
|
|
{
|
|
"partner_bank_id": bank_account.id,
|
|
"format": "sepa",
|
|
"type": "oneoff",
|
|
"signature_date": "2015-01-01",
|
|
}
|
|
)
|
|
return res
|