From ca4cb287f798c2a9c0fcab87af83abf6b770622a Mon Sep 17 00:00:00 2001 From: mreficent Date: Tue, 13 Nov 2018 18:12:08 +0100 Subject: [PATCH] [MIG] account_financial_report_date_range: Migration to 11.0 --- account_financial_report_date_range/README.rst | 8 ++++---- account_financial_report_date_range/__init__.py | 1 - account_financial_report_date_range/__manifest__.py | 5 ++--- .../readme/CONTRIBUTORS.rst | 1 + .../readme/DESCRIPTION.rst | 2 ++ account_financial_report_date_range/readme/INSTALL.rst | 1 + account_financial_report_date_range/tests/__init__.py | 1 - .../tests/test_accounting_report.py | 2 -- account_financial_report_date_range/wizards/__init__.py | 1 - .../wizards/account_common_report.py | 1 - 10 files changed, 10 insertions(+), 13 deletions(-) create mode 100644 account_financial_report_date_range/readme/CONTRIBUTORS.rst create mode 100644 account_financial_report_date_range/readme/DESCRIPTION.rst create mode 100644 account_financial_report_date_range/readme/INSTALL.rst diff --git a/account_financial_report_date_range/README.rst b/account_financial_report_date_range/README.rst index 66f86133..ccc780ba 100644 --- a/account_financial_report_date_range/README.rst +++ b/account_financial_report_date_range/README.rst @@ -2,9 +2,9 @@ :target: https://www.gnu.org/licenses/agpl :alt: License: AGPL-3 -==================================== -Date Range Year on Financial Reports -==================================== +=================================== +Account Financial Report Date Range +=================================== This module adds the 'Date Range' field to the Odoo CE standard addons financial reports wizard. @@ -19,7 +19,7 @@ Configuration and 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/91/10.0 + :target: https://runbot.odoo-community.org/runbot/91/11.0 Bug Tracker =========== diff --git a/account_financial_report_date_range/__init__.py b/account_financial_report_date_range/__init__.py index 943cefd9..5cb1c491 100644 --- a/account_financial_report_date_range/__init__.py +++ b/account_financial_report_date_range/__init__.py @@ -1,2 +1 @@ -# -*- coding: utf-8 -*- from . import wizards diff --git a/account_financial_report_date_range/__manifest__.py b/account_financial_report_date_range/__manifest__.py index 9a1ec6d5..fc0fa498 100644 --- a/account_financial_report_date_range/__manifest__.py +++ b/account_financial_report_date_range/__manifest__.py @@ -1,14 +1,13 @@ -# -*- coding: utf-8 -*- # Copyright 2009-2018 Noviat. # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). { - 'name': 'Date Range Year on Financial Reports', + 'name': 'Account Financial Report Date Range', 'summary': """ Add Date Range field to the Odoo OE standard addons financial reports wizard. """, - 'version': '10.0.1.0.0', + 'version': '11.0.1.0.0', 'category': 'Accounting & Finance', 'website': 'https://github.com/OCA/account-financial-reporting', 'author': 'Noviat,' diff --git a/account_financial_report_date_range/readme/CONTRIBUTORS.rst b/account_financial_report_date_range/readme/CONTRIBUTORS.rst new file mode 100644 index 00000000..044d1a00 --- /dev/null +++ b/account_financial_report_date_range/readme/CONTRIBUTORS.rst @@ -0,0 +1 @@ +* Luc De Meyer diff --git a/account_financial_report_date_range/readme/DESCRIPTION.rst b/account_financial_report_date_range/readme/DESCRIPTION.rst new file mode 100644 index 00000000..6fa62fe1 --- /dev/null +++ b/account_financial_report_date_range/readme/DESCRIPTION.rst @@ -0,0 +1,2 @@ +This module adds the 'Date Range' field to the Odoo CE standard addons +financial reports wizard. diff --git a/account_financial_report_date_range/readme/INSTALL.rst b/account_financial_report_date_range/readme/INSTALL.rst new file mode 100644 index 00000000..9d94322d --- /dev/null +++ b/account_financial_report_date_range/readme/INSTALL.rst @@ -0,0 +1 @@ +There is no specific installation procedure for this module. diff --git a/account_financial_report_date_range/tests/__init__.py b/account_financial_report_date_range/tests/__init__.py index 2614549a..622731e7 100644 --- a/account_financial_report_date_range/tests/__init__.py +++ b/account_financial_report_date_range/tests/__init__.py @@ -1,2 +1 @@ -# -*- coding: utf-8 -*- from . import test_accounting_report diff --git a/account_financial_report_date_range/tests/test_accounting_report.py b/account_financial_report_date_range/tests/test_accounting_report.py index 775f1e7c..5459f605 100644 --- a/account_financial_report_date_range/tests/test_accounting_report.py +++ b/account_financial_report_date_range/tests/test_accounting_report.py @@ -1,9 +1,7 @@ -# -*- coding: utf-8 -*- # Copyright 2009-2017 Noviat. # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). import time - from odoo.tests.common import TransactionCase diff --git a/account_financial_report_date_range/wizards/__init__.py b/account_financial_report_date_range/wizards/__init__.py index c3dbe6ba..e8a358ef 100644 --- a/account_financial_report_date_range/wizards/__init__.py +++ b/account_financial_report_date_range/wizards/__init__.py @@ -1,2 +1 @@ -# -*- coding: utf-8 -*- from . import account_common_report diff --git a/account_financial_report_date_range/wizards/account_common_report.py b/account_financial_report_date_range/wizards/account_common_report.py index a5cc6d9c..e222f681 100644 --- a/account_financial_report_date_range/wizards/account_common_report.py +++ b/account_financial_report_date_range/wizards/account_common_report.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright 2009-2017 Noviat. # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).