mirror of
https://gitlab.com/flectra-community/l10n-switzerland-flectra.git
synced 2024-11-16 19:12:04 +00:00
22ee40100d
[FIX] l10n_ch_zip [ADD] Added latest OCA Modules [REMOVE] Removed QR modules which are not required anymore
118 lines
4.0 KiB
Python
118 lines
4.0 KiB
Python
# Copyright 2017 Camptocamp SA
|
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl)
|
|
|
|
from flectra.tests import common, tagged
|
|
from flectra.tests.common import Form
|
|
|
|
|
|
@tagged("post_install", "-at_install")
|
|
class TestSearchmove(common.SavepointCase):
|
|
@classmethod
|
|
def setUpClass(cls):
|
|
super().setUpClass()
|
|
cls.env = cls.env(context=dict(cls.env.context, tracking_disable=True))
|
|
cls.company = cls.env.ref("base.main_company")
|
|
cls.partner = cls.env.ref("base.res_partner_12")
|
|
bank = cls.env["res.bank"].create(
|
|
{"name": "BCV", "bic": "BBRUBEBB", "clearing": "234234"}
|
|
)
|
|
cls.env["res.partner.bank"].create(
|
|
{
|
|
"partner_id": cls.company.partner_id.id,
|
|
"bank_id": bank.id,
|
|
"acc_number": "ISR",
|
|
"l10n_ch_isr_subscription_chf": "01-162-8",
|
|
"sequence": 1,
|
|
}
|
|
)
|
|
cls.journal = cls.env["account.journal"].create(
|
|
{
|
|
"name": "Test Journal",
|
|
"company_id": cls.company.id,
|
|
"type": "sale",
|
|
"code": "SALE123",
|
|
"bank_id": bank.id,
|
|
"bank_acc_number": "10-8060-7",
|
|
}
|
|
)
|
|
|
|
def new_form(self):
|
|
inv = Form(self.env["account.move"].with_context(default_type="out_invoice"))
|
|
# inv = Form(
|
|
# self.env['account.move'],
|
|
# view='account.view_move_form'
|
|
# )
|
|
inv.partner_id = self.partner
|
|
inv.journal_id = self.journal
|
|
return inv
|
|
|
|
def assert_find_ref(self, ref, operator, value):
|
|
inv_form = self.new_form()
|
|
inv_form.ref = ref
|
|
|
|
invoice = inv_form.save()
|
|
|
|
found = self.env["account.move"].search([("ref", operator, value)])
|
|
self.assertEqual(invoice, found)
|
|
|
|
def assert_not_find_ref(self, ref, operator, value):
|
|
inv_form = self.new_form()
|
|
inv_form.ref = ref
|
|
inv_form.save()
|
|
|
|
found = self.env["account.move"].search([("ref", operator, value)])
|
|
self.assertFalse(found)
|
|
|
|
def test_search_equal_strict(self):
|
|
self.assert_find_ref(
|
|
"27 29990 00000 00001 70400 25019", "=", "27 29990 00000 00001 70400 25019"
|
|
)
|
|
|
|
def test_search_equal_whitespace_right(self):
|
|
self.assert_not_find_ref(
|
|
"272999000000000017040025019", "=", "27 29990 00000 00001 70400 25019"
|
|
)
|
|
|
|
def test_search_equal_whitespace_left(self):
|
|
self.assert_not_find_ref(
|
|
"27 29990 00000 00001 70400 25019", "=", "272999000000000017040025019"
|
|
)
|
|
|
|
def test_search_like_whitespace_right(self):
|
|
self.assert_find_ref("272999000000000017040025019", "like", "1 70400 25")
|
|
|
|
def test_search_like_whitespace_left(self):
|
|
self.assert_find_ref("27 29990 00000 00001 70400 25019", "like", "17040025")
|
|
|
|
def test_search_like_whitespace_both(self):
|
|
self.assert_find_ref("27 29990 00000 00001 70400 25019", "like", "17 040025 01")
|
|
|
|
def test_search_eqlike_whitespace_raw(self):
|
|
self.assert_not_find_ref(
|
|
"27 29990 00000 00001 70400 25019", "=like", "17 040025 01"
|
|
)
|
|
|
|
def test_search_eqlike_whitespace_wildcards(self):
|
|
self.assert_find_ref(
|
|
"27 29990 00000 00001 70400 25019", "=like", "%17 040025 01%"
|
|
)
|
|
|
|
def test_search_different(self):
|
|
self.assert_not_find_ref("27 29990 00000 00001 70400 25019", "like", "4273473")
|
|
|
|
def test_search_other_field(self):
|
|
inv_form = self.new_form()
|
|
inv_form.ref = "27 29990 00000 00001 70400 25019"
|
|
move = inv_form.save()
|
|
|
|
found = self.env["account.move"].search([("partner_id", "=", self.partner.id)])
|
|
self.assertEqual(move, found)
|
|
|
|
def test_search_unary_operator(self):
|
|
inv_form = self.new_form()
|
|
inv_form.ref = "27 29990 00000 00001 70400 25019"
|
|
move = inv_form.save()
|
|
|
|
found = self.env["account.move"].search([("ref", "like", "2999000000")])
|
|
self.assertEqual(move, found)
|