mirror of
https://gitlab.com/flectra-community/bank-payment.git
synced 2024-11-22 13:42:07 +00:00
156 lines
6.6 KiB
Python
156 lines
6.6 KiB
Python
# Copyright 2019 ACSONE SA/NV
|
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
|
|
|
from unittest.mock import patch
|
|
|
|
from flectra.tests import tagged
|
|
|
|
from flectra.addons.account.models.account_payment_method import AccountPaymentMethod
|
|
from flectra.addons.account.tests.common import AccountTestInvoicingCommon
|
|
from flectra.addons.base.tests.common import DISABLED_MAIL_CONTEXT
|
|
|
|
|
|
@tagged("-at_install", "post_install")
|
|
class TestAccountPayment(AccountTestInvoicingCommon):
|
|
@classmethod
|
|
def setUpClass(cls, chart_template_ref=None):
|
|
super().setUpClass(chart_template_ref=chart_template_ref)
|
|
cls.env = cls.env(context=dict(cls.env.context, **DISABLED_MAIL_CONTEXT))
|
|
Method_get_payment_method_information = (
|
|
AccountPaymentMethod._get_payment_method_information
|
|
)
|
|
|
|
def _get_payment_method_information(self):
|
|
res = Method_get_payment_method_information(self)
|
|
res["IN"] = {"mode": "multi", "domain": [("type", "=", "bank")]}
|
|
res["IN2"] = {"mode": "multi", "domain": [("type", "=", "bank")]}
|
|
res["OUT"] = {"mode": "multi", "domain": [("type", "=", "bank")]}
|
|
return res
|
|
|
|
cls.company = cls.company_data["company"]
|
|
cls.env.user.company_ids += cls.company
|
|
|
|
# MODELS
|
|
cls.account_payment_model = cls.env["account.payment"]
|
|
cls.account_journal_model = cls.env["account.journal"]
|
|
cls.payment_method_model = cls.env["account.payment.method"]
|
|
|
|
# INSTANCES
|
|
# Payment methods
|
|
with patch.object(
|
|
AccountPaymentMethod,
|
|
"_get_payment_method_information",
|
|
_get_payment_method_information,
|
|
):
|
|
cls.inbound_payment_method_01 = cls.payment_method_model.create(
|
|
{
|
|
"name": "inbound",
|
|
"code": "IN",
|
|
"payment_type": "inbound",
|
|
}
|
|
)
|
|
cls.inbound_payment_method_02 = cls.inbound_payment_method_01.copy(
|
|
{
|
|
"name": "inbound 2",
|
|
"code": "IN2",
|
|
"payment_type": "inbound",
|
|
}
|
|
)
|
|
cls.outbound_payment_method_01 = cls.payment_method_model.create(
|
|
{
|
|
"name": "outbound",
|
|
"code": "OUT",
|
|
"payment_type": "outbound",
|
|
}
|
|
)
|
|
# Journals
|
|
cls.manual_in = cls.env.ref("account.account_payment_method_manual_in")
|
|
cls.manual_out = cls.env.ref("account.account_payment_method_manual_out")
|
|
cls.bank_journal = cls.company_data["default_journal_bank"]
|
|
|
|
def test_account_payment_01(self):
|
|
self.assertFalse(self.inbound_payment_method_01.payment_order_only)
|
|
self.assertFalse(self.inbound_payment_method_02.payment_order_only)
|
|
self.assertFalse(self.bank_journal.inbound_payment_order_only)
|
|
self.inbound_payment_method_01.payment_order_only = True
|
|
self.assertTrue(self.inbound_payment_method_01.payment_order_only)
|
|
self.assertFalse(self.inbound_payment_method_02.payment_order_only)
|
|
self.assertFalse(self.bank_journal.inbound_payment_order_only)
|
|
for p in self.bank_journal.inbound_payment_method_line_ids.payment_method_id:
|
|
p.payment_order_only = True
|
|
self.assertTrue(self.bank_journal.inbound_payment_order_only)
|
|
|
|
def test_account_payment_02(self):
|
|
self.assertFalse(self.outbound_payment_method_01.payment_order_only)
|
|
self.assertFalse(self.bank_journal.outbound_payment_order_only)
|
|
self.outbound_payment_method_01.payment_order_only = True
|
|
self.assertTrue(self.outbound_payment_method_01.payment_order_only)
|
|
payment_method_id = (
|
|
self.bank_journal.outbound_payment_method_line_ids.payment_method_id
|
|
)
|
|
payment_method_id.payment_order_only = True
|
|
self.assertTrue(self.bank_journal.outbound_payment_order_only)
|
|
|
|
def test_account_payment_03(self):
|
|
self.assertFalse(self.inbound_payment_method_01.payment_order_only)
|
|
self.assertFalse(self.inbound_payment_method_02.payment_order_only)
|
|
self.assertFalse(self.bank_journal.inbound_payment_order_only)
|
|
new_account_payment = self.account_payment_model.with_context(
|
|
default_company_id=self.company.id
|
|
).new(
|
|
{
|
|
"journal_id": self.bank_journal.id,
|
|
"payment_type": "inbound",
|
|
"amount": 1,
|
|
"company_id": self.company.id,
|
|
}
|
|
)
|
|
# check payment methods
|
|
payment_methods = (
|
|
new_account_payment.available_payment_method_line_ids.filtered(
|
|
lambda x: x.payment_type == "inbound"
|
|
)
|
|
.mapped("payment_method_id")
|
|
.ids
|
|
)
|
|
self.assertIn(self.inbound_payment_method_01.id, payment_methods)
|
|
self.assertIn(self.inbound_payment_method_02.id, payment_methods)
|
|
# Set one payment method of the bank journal 'payment order only'
|
|
self.inbound_payment_method_01.payment_order_only = True
|
|
# check payment methods
|
|
new_account_payment2 = self.account_payment_model.with_context(
|
|
default_company_id=self.company.id
|
|
).new(
|
|
{
|
|
"journal_id": self.bank_journal.id,
|
|
"payment_type": "inbound",
|
|
"amount": 1,
|
|
"company_id": self.company.id,
|
|
}
|
|
)
|
|
payment_methods = new_account_payment2.available_payment_method_line_ids.mapped(
|
|
"payment_method_id"
|
|
).ids
|
|
self.assertNotIn(self.inbound_payment_method_01.id, payment_methods)
|
|
self.assertIn(self.inbound_payment_method_02.id, payment_methods)
|
|
# Set all payment methods of the bank journal 'payment order only'
|
|
for p in self.bank_journal.inbound_payment_method_line_ids.payment_method_id:
|
|
p.payment_order_only = True
|
|
self.assertTrue(self.bank_journal.inbound_payment_order_only)
|
|
# check payment methods
|
|
new_account_payment3 = self.account_payment_model.with_context(
|
|
default_company_id=self.company.id
|
|
).new(
|
|
{
|
|
"journal_id": self.bank_journal.id,
|
|
"payment_type": "inbound",
|
|
"amount": 1,
|
|
"company_id": self.company.id,
|
|
}
|
|
)
|
|
payment_methods = new_account_payment3.available_payment_method_line_ids.mapped(
|
|
"payment_method_id"
|
|
).ids
|
|
self.assertNotIn(self.inbound_payment_method_01.id, payment_methods)
|
|
self.assertNotIn(self.inbound_payment_method_02.id, payment_methods)
|