2020-11-20 04:59:59 +01:00
|
|
|
# Copyright 2020 Ecosoft (http://ecosoft.co.th)
|
|
|
|
# License AGPL-3 - See http://www.gnu.org/licenses/agpl-3.0.html
|
2022-06-03 01:15:16 +02:00
|
|
|
from odoo import Command
|
|
|
|
from odoo.exceptions import UserError, ValidationError
|
2020-11-20 04:59:59 +01:00
|
|
|
from odoo.tests.common import Form, TransactionCase
|
|
|
|
|
|
|
|
|
|
|
|
class TestAccountMoveTemplateEnhanced(TransactionCase):
|
2023-06-06 12:38:05 +02:00
|
|
|
@classmethod
|
|
|
|
def setUpClass(cls):
|
|
|
|
super().setUpClass()
|
|
|
|
cls.Move = cls.env["account.move"]
|
|
|
|
cls.Journal = cls.env["account.journal"]
|
|
|
|
cls.Account = cls.env["account.account"]
|
|
|
|
cls.Template = cls.env["account.move.template"]
|
|
|
|
cls.Partner = cls.env["res.partner"]
|
2020-11-20 04:59:59 +01:00
|
|
|
|
2023-06-06 12:38:05 +02:00
|
|
|
cls.journal = cls.Journal.search([("type", "=", "general")], limit=1)
|
|
|
|
cls.ar_account_id = cls.Account.search(
|
|
|
|
[("account_type", "=", "asset_receivable")], limit=1
|
2020-11-20 04:59:59 +01:00
|
|
|
)
|
2023-06-06 12:38:05 +02:00
|
|
|
cls.ap_account_id = cls.Account.search(
|
|
|
|
[("account_type", "=", "liability_payable")], limit=1
|
2020-11-20 04:59:59 +01:00
|
|
|
)
|
2023-06-06 12:38:05 +02:00
|
|
|
cls.income_account_id = cls.Account.search(
|
2020-11-20 04:59:59 +01:00
|
|
|
[
|
2023-06-06 12:38:05 +02:00
|
|
|
("account_type", "=", "income_other"),
|
|
|
|
("internal_group", "=", "income"),
|
2020-11-20 04:59:59 +01:00
|
|
|
],
|
|
|
|
limit=1,
|
|
|
|
)
|
2023-06-06 12:38:05 +02:00
|
|
|
cls.expense_account_id = cls.Account.search(
|
2020-11-20 04:59:59 +01:00
|
|
|
[
|
2023-06-06 12:38:05 +02:00
|
|
|
("account_type", "=", "expense"),
|
|
|
|
("internal_group", "=", "expense"),
|
2020-11-20 04:59:59 +01:00
|
|
|
],
|
|
|
|
limit=1,
|
|
|
|
)
|
2023-06-06 12:38:05 +02:00
|
|
|
cls.partners = cls.Partner.search([], limit=3)
|
2020-11-20 04:59:59 +01:00
|
|
|
|
|
|
|
# Create a simple move tempalte
|
|
|
|
ar_line = {
|
|
|
|
"sequence": 0,
|
|
|
|
"name": "AR Line 1",
|
2023-06-06 12:38:05 +02:00
|
|
|
"account_id": cls.ar_account_id.id,
|
|
|
|
"opt_account_id": cls.ap_account_id.id,
|
2020-11-20 04:59:59 +01:00
|
|
|
"move_line_type": "dr",
|
|
|
|
"type": "input",
|
|
|
|
}
|
|
|
|
income_line1 = {
|
|
|
|
"sequence": 1,
|
|
|
|
"name": "Income Line 2",
|
2023-06-06 12:38:05 +02:00
|
|
|
"account_id": cls.income_account_id.id,
|
|
|
|
"opt_account_id": cls.expense_account_id.id,
|
2020-11-20 04:59:59 +01:00
|
|
|
"move_line_type": "cr",
|
|
|
|
"type": "computed",
|
|
|
|
"python_code": "L0*1/3",
|
|
|
|
}
|
|
|
|
income_line2 = {
|
|
|
|
"sequence": 2,
|
|
|
|
"name": "Income Line 2",
|
2023-06-06 12:38:05 +02:00
|
|
|
"account_id": cls.income_account_id.id,
|
|
|
|
"opt_account_id": cls.expense_account_id.id,
|
2020-11-20 04:59:59 +01:00
|
|
|
"move_line_type": "cr",
|
|
|
|
"type": "computed",
|
|
|
|
"python_code": "L0*2/3",
|
|
|
|
}
|
|
|
|
|
2023-06-06 12:38:05 +02:00
|
|
|
cls.move_template = cls.Template.create(
|
2020-11-20 04:59:59 +01:00
|
|
|
{
|
|
|
|
"name": "Test Template",
|
2023-06-06 12:38:05 +02:00
|
|
|
"journal_id": cls.journal.id,
|
2020-11-20 04:59:59 +01:00
|
|
|
"line_ids": [
|
2022-06-03 01:15:16 +02:00
|
|
|
Command.create(ar_line),
|
|
|
|
Command.create(income_line1),
|
|
|
|
Command.create(income_line2),
|
2020-11-20 04:59:59 +01:00
|
|
|
],
|
|
|
|
}
|
|
|
|
)
|
|
|
|
|
|
|
|
def test_move_template_normal(self):
|
2022-03-30 21:38:04 +02:00
|
|
|
"""Test normal case, input amount 300"""
|
2020-11-20 04:59:59 +01:00
|
|
|
with Form(self.env["account.move.template.run"]) as f:
|
|
|
|
f.template_id = self.move_template
|
|
|
|
template_run = f.save()
|
|
|
|
template_run.load_lines()
|
|
|
|
template_run.line_ids[0].amount = 300
|
|
|
|
res = template_run.generate_move()
|
|
|
|
move = self.Move.browse(res["res_id"])
|
|
|
|
self.assertRecordValues(
|
|
|
|
move.line_ids.sorted("credit"),
|
|
|
|
[
|
|
|
|
{"account_id": self.ar_account_id.id, "credit": 0.0, "debit": 300.0},
|
|
|
|
{
|
|
|
|
"account_id": self.income_account_id.id,
|
|
|
|
"credit": 100.0,
|
|
|
|
"debit": 0.0,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"account_id": self.income_account_id.id,
|
|
|
|
"credit": 200.0,
|
|
|
|
"debit": 0.0,
|
|
|
|
},
|
|
|
|
],
|
|
|
|
)
|
|
|
|
|
|
|
|
def test_move_template_optional(self):
|
2022-03-30 21:38:04 +02:00
|
|
|
"""Test optional case, input amount -300, expect optional account"""
|
2020-11-20 04:59:59 +01:00
|
|
|
with Form(self.env["account.move.template.run"]) as f:
|
|
|
|
f.template_id = self.move_template
|
|
|
|
template_run = f.save()
|
|
|
|
template_run.load_lines()
|
|
|
|
template_run.line_ids[0].amount = -300 # Negative amount
|
|
|
|
res = template_run.generate_move()
|
|
|
|
move = self.Move.browse(res["res_id"])
|
|
|
|
self.assertRecordValues(
|
|
|
|
move.line_ids.sorted("debit"),
|
|
|
|
[
|
|
|
|
{"account_id": self.ap_account_id.id, "credit": 300.0, "debit": 0.0},
|
|
|
|
{
|
|
|
|
"account_id": self.expense_account_id.id,
|
|
|
|
"credit": 0.0,
|
|
|
|
"debit": 100.0,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"account_id": self.expense_account_id.id,
|
|
|
|
"credit": 0.0,
|
|
|
|
"debit": 200.0,
|
|
|
|
},
|
|
|
|
],
|
|
|
|
)
|
|
|
|
|
|
|
|
def test_move_template_overwrite(self):
|
2022-03-30 21:38:04 +02:00
|
|
|
"""Test case overwrite, amount = 3000, no need to manual input"""
|
2020-11-20 04:59:59 +01:00
|
|
|
# Test for error when debit is not a valid field
|
|
|
|
with Form(self.env["account.move.template.run"]) as f:
|
|
|
|
f.template_id = self.move_template
|
|
|
|
f.overwrite = str(
|
|
|
|
{
|
|
|
|
"L0": {
|
|
|
|
"partner_id": self.partners[0].id,
|
|
|
|
"amount": 3000,
|
|
|
|
"debit": 3000,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
)
|
|
|
|
template_run = f.save()
|
2022-06-03 01:15:16 +02:00
|
|
|
msg_error = "overwrite are .'partner_id', 'amount', 'name', 'date_maturity'"
|
|
|
|
with self.assertRaisesRegex(ValidationError, msg_error):
|
2020-11-20 04:59:59 +01:00
|
|
|
template_run.load_lines()
|
|
|
|
# Assign only on valid fields, and load_lines again
|
|
|
|
with Form(self.env["account.move.template.run"]) as f:
|
|
|
|
f.template_id = self.move_template
|
|
|
|
f.overwrite = str(
|
|
|
|
{
|
|
|
|
"L0": {"partner_id": self.partners[0].id, "amount": 3000},
|
|
|
|
"L1": {"partner_id": self.partners[1].id},
|
|
|
|
"L2": {"partner_id": self.partners[2].id},
|
|
|
|
}
|
|
|
|
)
|
|
|
|
template_run = f.save()
|
|
|
|
res = template_run.load_lines()
|
|
|
|
self.assertEqual(template_run.line_ids[0].partner_id, self.partners[0])
|
|
|
|
self.assertEqual(template_run.line_ids[0].amount, 3000)
|
2022-06-03 01:15:16 +02:00
|
|
|
res = template_run.with_context(**res["context"]).generate_move()
|
2020-11-20 04:59:59 +01:00
|
|
|
move = self.Move.browse(res["res_id"])
|
|
|
|
self.assertRecordValues(
|
|
|
|
move.line_ids.sorted("credit"),
|
|
|
|
[
|
|
|
|
{
|
|
|
|
"partner_id": self.partners[0].id,
|
|
|
|
"account_id": self.ar_account_id.id,
|
|
|
|
"credit": 0.0,
|
|
|
|
"debit": 3000.0,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"partner_id": self.partners[1].id,
|
|
|
|
"account_id": self.income_account_id.id,
|
|
|
|
"credit": 1000.0,
|
|
|
|
"debit": 0.0,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"partner_id": self.partners[2].id,
|
|
|
|
"account_id": self.income_account_id.id,
|
|
|
|
"credit": 2000.0,
|
|
|
|
"debit": 0.0,
|
|
|
|
},
|
|
|
|
],
|
|
|
|
)
|
2022-06-03 01:15:16 +02:00
|
|
|
|
|
|
|
def test_move_copy(self):
|
|
|
|
template_copy = self.move_template.copy()
|
|
|
|
self.assertEqual(template_copy.name, "Test Template (copy)")
|
|
|
|
|
|
|
|
def test_move_generate_from_action_button(self):
|
|
|
|
# `Generate Journal Entry` action button
|
|
|
|
res = self.move_template.generate_journal_entry()
|
|
|
|
self.assertEqual(res["name"], "Create Entry from Template")
|
|
|
|
self.assertEqual(res["res_model"], "account.move.template.run")
|
|
|
|
|
|
|
|
def test_move_template_exceptions(self):
|
|
|
|
msg_error = "Python Code must be set for computed line with sequence 1."
|
|
|
|
with self.assertRaisesRegex(ValidationError, msg_error):
|
|
|
|
self.move_template.line_ids[1].python_code = ""
|
|
|
|
|
|
|
|
self.move_template.line_ids[1].python_code = "P0*1/3"
|
|
|
|
with Form(self.env["account.move.template.run"]) as f:
|
|
|
|
f.template_id = self.move_template
|
|
|
|
template_run = f.save()
|
|
|
|
template_run.load_lines()
|
|
|
|
msg_error = "really exists and have a lower sequence than the current line."
|
|
|
|
with self.assertRaisesRegex(UserError, msg_error):
|
|
|
|
template_run.generate_move()
|
|
|
|
|
|
|
|
self.move_template.line_ids[1].python_code = "L0*"
|
|
|
|
with Form(self.env["account.move.template.run"]) as f:
|
|
|
|
f.template_id = self.move_template
|
|
|
|
template_run = f.save()
|
|
|
|
template_run.load_lines()
|
|
|
|
msg_error = "the syntax of the formula is wrong."
|
|
|
|
with self.assertRaisesRegex(UserError, msg_error):
|
|
|
|
template_run.generate_move()
|
|
|
|
|
|
|
|
self.move_template.line_ids[1].python_code = "L0*1/3"
|
|
|
|
with Form(self.env["account.move.template.run"]) as f:
|
|
|
|
f.template_id = self.move_template
|
|
|
|
template_run = f.save()
|
|
|
|
template_run.load_lines()
|
|
|
|
template_run.line_ids[0].amount = 0
|
|
|
|
msg_error = "Debit and credit of all lines are null."
|
|
|
|
with self.assertRaisesRegex(UserError, msg_error):
|
|
|
|
template_run.generate_move()
|
|
|
|
|
|
|
|
with Form(self.env["account.move.template.run"]) as f:
|
|
|
|
f.template_id = self.move_template
|
|
|
|
f.overwrite = []
|
|
|
|
template_run = f.save()
|
|
|
|
msg_error = "Overwrite value must be a valid python dict"
|
|
|
|
with self.assertRaisesRegex(ValidationError, msg_error):
|
|
|
|
template_run.load_lines()
|
|
|
|
|
|
|
|
with Form(self.env["account.move.template.run"]) as f:
|
|
|
|
f.template_id = self.move_template
|
|
|
|
f.overwrite = str({"P0": {"amount": 100}})
|
|
|
|
template_run = f.save()
|
2023-11-03 13:25:04 +01:00
|
|
|
msg_error = "Keys must be line sequence i.e. L1, L2, ..."
|
2022-06-03 01:15:16 +02:00
|
|
|
with self.assertRaisesRegex(ValidationError, msg_error):
|
|
|
|
template_run.load_lines()
|
|
|
|
|
|
|
|
with Form(self.env["account.move.template.run"]) as f:
|
|
|
|
f.template_id = self.move_template
|
|
|
|
f.overwrite = str({"L0": []})
|
|
|
|
template_run = f.save()
|
|
|
|
msg_error = "Invalid dictionary: 'list' object has no attribute 'keys'"
|
|
|
|
with self.assertRaisesRegex(ValidationError, msg_error):
|
|
|
|
template_run.load_lines()
|
|
|
|
|
|
|
|
with Form(self.env["account.move.template.run"]) as f:
|
|
|
|
f.template_id = self.move_template
|
|
|
|
f.overwrite = str({"L0": {"test": 100}})
|
|
|
|
template_run = f.save()
|
|
|
|
msg_error = "overwrite are .'partner_id', 'amount', 'name', 'date_maturity'"
|
|
|
|
with self.assertRaisesRegex(ValidationError, msg_error):
|
|
|
|
template_run.load_lines()
|
|
|
|
|
|
|
|
with Form(self.env["account.move.template.run"]) as f:
|
|
|
|
f.template_id = self.move_template
|
|
|
|
template_run = f.save()
|
|
|
|
template_run.line_ids.unlink()
|
|
|
|
msg_error = "You deleted a line in the wizard. This is not allowed:"
|
|
|
|
with self.assertRaisesRegex(UserError, msg_error):
|
|
|
|
template_run.generate_move()
|