From 554f46deafbbaf43b98ff6a57907b1a4fff22190 Mon Sep 17 00:00:00 2001 From: Thierry Ducrest Date: Mon, 13 Nov 2017 11:55:42 +0100 Subject: [PATCH] [MIG] account_fiscal_year: Migration to 11. --- account_fiscal_year/README.rst | 14 ++------------ account_fiscal_year/__init__.py | 4 ---- account_fiscal_year/__manifest__.py | 3 +-- account_fiscal_year/models/__init__.py | 4 ---- account_fiscal_year/models/date_range_type.py | 1 - account_fiscal_year/models/res_company.py | 1 - account_fiscal_year/tests/__init__.py | 4 ---- .../tests/test_account_fiscal_year.py | 1 - 8 files changed, 3 insertions(+), 29 deletions(-) diff --git a/account_fiscal_year/README.rst b/account_fiscal_year/README.rst index 88b788cc7..71c472624 100644 --- a/account_fiscal_year/README.rst +++ b/account_fiscal_year/README.rst @@ -1,5 +1,5 @@ .. image:: https://img.shields.io/badge/licence-AGPL--3-blue.svg - :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html + :target: https://www.gnu.org/licenses/agpl-3.0-standalone.html :alt: License: AGPL-3 =================== @@ -15,22 +15,12 @@ encloses the give date. If it does not find it, it falls back on the standard Odoo technique based on the day/month of end of fiscal year. -Installation -============ - -Just install it - -Configuration -============= - -Nothing - Usage ===== .. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas :alt: Try me on Runbot - :target: https://runbot.odoo-community.org/runbot/92/10.0 + :target: https://runbot.odoo-community.org/runbot/92/11.0 Bug Tracker diff --git a/account_fiscal_year/__init__.py b/account_fiscal_year/__init__.py index bf8a462ec..a9e337226 100644 --- a/account_fiscal_year/__init__.py +++ b/account_fiscal_year/__init__.py @@ -1,6 +1,2 @@ -# -*- coding: utf-8 -*- -# Author: Damien Crier -# Copyright 2016 Camptocamp SA -# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). from . import models diff --git a/account_fiscal_year/__manifest__.py b/account_fiscal_year/__manifest__.py index 2aa2d5ddc..4ffed7027 100644 --- a/account_fiscal_year/__manifest__.py +++ b/account_fiscal_year/__manifest__.py @@ -1,10 +1,9 @@ -# -*- coding: utf-8 -*- # Author: Damien Crier # Copyright 2016 Camptocamp SA # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). { 'name': 'Account Fiscal Year', - 'version': '10.0.1.0.0', + 'version': '11.0.1.0.0', 'category': 'Accounting', 'author': 'Camptocamp SA,' 'Odoo Community Association (OCA)', diff --git a/account_fiscal_year/models/__init__.py b/account_fiscal_year/models/__init__.py index 27d10cd58..c15e81a0f 100644 --- a/account_fiscal_year/models/__init__.py +++ b/account_fiscal_year/models/__init__.py @@ -1,7 +1,3 @@ -# -*- coding: utf-8 -*- -# Author: Damien Crier -# Copyright 2016 Camptocamp SA -# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). from . import date_range_type from . import res_company diff --git a/account_fiscal_year/models/date_range_type.py b/account_fiscal_year/models/date_range_type.py index 95b773c68..4f1977fd8 100644 --- a/account_fiscal_year/models/date_range_type.py +++ b/account_fiscal_year/models/date_range_type.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Author: Damien Crier # Copyright 2016 Camptocamp SA # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). diff --git a/account_fiscal_year/models/res_company.py b/account_fiscal_year/models/res_company.py index 234517b23..05bba45dc 100644 --- a/account_fiscal_year/models/res_company.py +++ b/account_fiscal_year/models/res_company.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Author: Damien Crier # Copyright 2016 Camptocamp SA # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). diff --git a/account_fiscal_year/tests/__init__.py b/account_fiscal_year/tests/__init__.py index a3ec533e5..76b825aca 100644 --- a/account_fiscal_year/tests/__init__.py +++ b/account_fiscal_year/tests/__init__.py @@ -1,6 +1,2 @@ -# -*- coding: utf-8 -*- -# Author: Damien Crier -# Copyright 2016 Camptocamp SA -# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). from . import test_account_fiscal_year diff --git a/account_fiscal_year/tests/test_account_fiscal_year.py b/account_fiscal_year/tests/test_account_fiscal_year.py index 6f41c8ae7..f7db405a3 100644 --- a/account_fiscal_year/tests/test_account_fiscal_year.py +++ b/account_fiscal_year/tests/test_account_fiscal_year.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Author: Damien Crier # Copyright 2016 Camptocamp SA # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).