diff --git a/account_fiscal_year/README.rst b/account_fiscal_year/README.rst index 0f804a2f..d4905fc5 100644 --- a/account_fiscal_year/README.rst +++ b/account_fiscal_year/README.rst @@ -14,13 +14,13 @@ Account Fiscal Year :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html :alt: License: AGPL-3 .. |badge3| image:: https://img.shields.io/badge/github-OCA%2Faccount--financial--tools-lightgray.png?logo=github - :target: https://github.com/OCA/account-financial-tools/tree/14.0/account_fiscal_year + :target: https://github.com/OCA/account-financial-tools/tree/15.0/account_fiscal_year :alt: OCA/account-financial-tools .. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png :target: https://translation.odoo-community.org/projects/account-financial-tools-14-0/account-financial-tools-14-0-account_fiscal_year :alt: Translate me on Weblate .. |badge5| image:: https://img.shields.io/badge/runbot-Try%20me-875A7B.png - :target: https://runbot.odoo-community.org/runbot/92/14.0 + :target: https://runbot.odoo-community.org/runbot/92/15.0 :alt: Try me on Runbot |badge1| |badge2| |badge3| |badge4| |badge5| @@ -88,6 +88,6 @@ Current `maintainer `__: |maintainer-eLBati| -This module is part of the `OCA/account-financial-tools `_ project on GitHub. +This module is part of the `OCA/account-financial-tools `_ project on GitHub. You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute. diff --git a/account_fiscal_year/__manifest__.py b/account_fiscal_year/__manifest__.py index ec64a163..0dfbc810 100644 --- a/account_fiscal_year/__manifest__.py +++ b/account_fiscal_year/__manifest__.py @@ -5,7 +5,7 @@ { "name": "Account Fiscal Year", "summary": "Create Account Fiscal Year", - "version": "14.0.1.1.1", + "version": "15.0.1.0.0", "development_status": "Production/Stable", "category": "Accounting", "website": "https://github.com/OCA/account-financial-tools" diff --git a/account_fiscal_year/models/account_fiscal_year.py b/account_fiscal_year/models/account_fiscal_year.py index fd871226..6b67fcac 100644 --- a/account_fiscal_year/models/account_fiscal_year.py +++ b/account_fiscal_year/models/account_fiscal_year.py @@ -12,7 +12,6 @@ class AccountFiscalYear(models.Model): _rec_name = "name" name = fields.Char( - string="Name", required=True, ) date_from = fields.Date( diff --git a/account_fiscal_year/readme/CONTRIBUTORS.rst b/account_fiscal_year/readme/CONTRIBUTORS.rst index e3569290..144ead79 100644 --- a/account_fiscal_year/readme/CONTRIBUTORS.rst +++ b/account_fiscal_year/readme/CONTRIBUTORS.rst @@ -3,3 +3,7 @@ * Lorenzo Battistini * Andrea Stirpe * Simone Rubino + +* `Pesol `__: + + * Pedro Evaristo Gonzalez Sanchez diff --git a/account_fiscal_year/tests/test_account_fiscal_year.py b/account_fiscal_year/tests/test_account_fiscal_year.py index cd809cac..5f9bf733 100644 --- a/account_fiscal_year/tests/test_account_fiscal_year.py +++ b/account_fiscal_year/tests/test_account_fiscal_year.py @@ -1,8 +1,8 @@ from odoo import fields -from odoo.tests import SavepointCase +from odoo.tests import common -class TestFiscalPosition(SavepointCase): +class TestFiscalPosition(common.TransactionCase): def check_compute_fiscal_year( self, company, date, expected_date_from, expected_date_to ):