Initial commit: Odoo 18.0-20251222 extra-addons
Some checks failed
pre-commit / pre-commit (push) Has been cancelled
tests / Detect unreleased dependencies (push) Has been cancelled
tests / test with OCB (push) Has been cancelled
tests / test with Odoo (push) Has been cancelled

This commit is contained in:
tocmo0nlord
2026-03-13 20:43:25 +00:00
parent 36e847a7df
commit adbe430761
9472 changed files with 1265727 additions and 0 deletions

View File

@@ -0,0 +1,3 @@
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
from . import test_account_move_tier_validation_approver

View File

@@ -0,0 +1,79 @@
# Copyright 2021 ForgeFlow (http://www.forgeflow.com)
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
from odoo.exceptions import ValidationError
from odoo.tests.common import TransactionCase
from odoo.addons.base.tests.common import DISABLED_MAIL_CONTEXT
class TestAccountMoveTierValidationApprover(TransactionCase):
def setUp(self):
super().setUp()
self.env = self.env(context=dict(self.env.context, **DISABLED_MAIL_CONTEXT))
self.res_partner_1 = self.env["res.partner"].create(
{"name": "Wood Corner", "email": "example@yourcompany.com"}
)
self.product_1 = self.env["product.product"].create(
{"name": "Desk Combination"}
)
self.currency_usd = self.env["res.currency"].search([("name", "=", "USD")])
self.test_user_1 = self.env["res.users"].create(
{"name": "User", "login": "test1", "email": "example@yourcompany.com"}
)
self.test_approver = self.env["res.users"].create(
{"name": "Approver", "login": "test2", "email": "example@yourcompany.com"}
)
self.vendor_bill = self.env["account.move"].create(
[
{
"move_type": "in_invoice",
"partner_id": self.res_partner_1.id,
"currency_id": self.currency_usd.id,
"approver_id": self.test_approver.id,
"invoice_line_ids": [
(
0,
None,
{
"product_id": self.product_1.id,
"product_uom_id": self.product_1.uom_id.id,
"quantity": 12,
"price_unit": 1000,
},
),
],
}
]
)
self.model_id = self.env["ir.model"].search(
[("model", "=", "account.move")], limit=1
)
self.field_id = self.env["ir.model.fields"].search(
[("name", "=", "approver_id")], limit=1
)
def test_field_validation_approver(self):
tiers = self.env["tier.definition"].search([])
for tier in tiers:
tier.action_archive()
self.tier_definition = self.env["tier.definition"].create(
{
"name": "Test Tier",
"model_id": self.model_id.id,
"review_type": "field",
"reviewer_field_id": self.field_id.id,
"definition_type": "domain",
"definition_domain": "[('move_type', '=', 'in_invoice')]",
}
)
record = self.vendor_bill
record.write(
{"approver_id": self.test_approver.id, "invoice_date": record.date}
)
record.with_user(self.test_user_1.id).request_validation()
record.with_user(self.test_user_1.id).validate_tier()
with self.assertRaises(ValidationError):
record.action_post()
record.with_user(self.test_approver.id).validate_tier()
record.action_post()