2
0

[MIG] account_move_fiscal_year: Migration to 16.0

This commit is contained in:
BT-anieto 2023-08-04 10:01:20 +02:00
parent c887c6cd2e
commit a54563781a
No known key found for this signature in database
3 changed files with 18 additions and 19 deletions

View File

@ -5,7 +5,7 @@
"name": "Account Move Fiscal Year",
"summary": """
Display the fiscal year on journal entries/item""",
"version": "15.0.1.0.1",
"version": "16.0.1.0.0",
"license": "AGPL-3",
"author": "ACSONE SA/NV, Odoo Community Association (OCA)",
"website": "https://github.com/OCA/account-financial-tools",

View File

@ -1,2 +1,3 @@
* Benjamin Willig <benjamin.willig@acsone.eu>
* Juany Davila <juany.davila@forgeflow.com>
* Alberto Nieto de Pablos <alberto.nieto@braintec.com> (https://braintec.com)

View File

@ -6,38 +6,36 @@ from odoo.tests.common import TransactionCase
class TestAccountMoveFiscalYear(TransactionCase):
def setUp(self):
super(TestAccountMoveFiscalYear, self).setUp()
self.AccountObj = self.env["account.account"]
self.AccountJournalObj = self.env["account.journal"]
self.AccountMoveObj = self.env["account.move"]
self.DateRangeObj = self.env["account.fiscal.year"]
@classmethod
def setUpClass(cls):
super().setUpClass()
cls.AccountObj = cls.env["account.account"]
cls.AccountJournalObj = cls.env["account.journal"]
cls.AccountMoveObj = cls.env["account.move"]
cls.DateRangeObj = cls.env["account.fiscal.year"]
self.bank_journal = self.AccountJournalObj.search(
cls.bank_journal = cls.AccountJournalObj.search(
[("type", "=", "bank")], limit=1
)
self.account_type_recv = self.env.ref("account.data_account_type_receivable")
self.account_type_rev = self.env.ref("account.data_account_type_revenue")
self.account_recv = self.AccountObj.create(
cls.account_recv = cls.AccountObj.create(
{
"code": "RECV_DR",
"code": "RECVDR",
"name": "Receivable (test)",
"reconcile": True,
"user_type_id": self.account_type_recv.id,
"account_type": "asset_receivable",
}
)
self.account_sale = self.AccountObj.create(
cls.account_sale = cls.AccountObj.create(
{
"code": "SALE_DR",
"code": "SALEDR",
"name": "Receivable (sale)",
"reconcile": True,
"user_type_id": self.account_type_rev.id,
"account_type": "income",
}
)
self.date_range_2017 = self.DateRangeObj.create(
cls.date_range_2017 = cls.DateRangeObj.create(
{
"name": "2017",
"date_from": "2017-01-01",
@ -45,7 +43,7 @@ class TestAccountMoveFiscalYear(TransactionCase):
}
)
self.date_range_2018 = self.DateRangeObj.create(
cls.date_range_2018 = cls.DateRangeObj.create(
{
"name": "2018",
"date_from": "2018-01-01",