Browse Source

[MIG] account_financial_report_date_range: Migration to 11.0

pull/688/head
mreficent 6 years ago
committed by Nikos Tsirintanis
parent
commit
16a9e20fd1
  1. 8
      account_financial_report_date_range/README.rst
  2. 1
      account_financial_report_date_range/__init__.py
  3. 5
      account_financial_report_date_range/__manifest__.py
  4. 1
      account_financial_report_date_range/readme/CONTRIBUTORS.rst
  5. 2
      account_financial_report_date_range/readme/DESCRIPTION.rst
  6. 1
      account_financial_report_date_range/readme/INSTALL.rst
  7. 1
      account_financial_report_date_range/tests/__init__.py
  8. 2
      account_financial_report_date_range/tests/test_accounting_report.py
  9. 1
      account_financial_report_date_range/wizards/__init__.py
  10. 1
      account_financial_report_date_range/wizards/account_common_report.py

8
account_financial_report_date_range/README.rst

@ -2,9 +2,9 @@
:target: https://www.gnu.org/licenses/agpl :target: https://www.gnu.org/licenses/agpl
:alt: License: AGPL-3 :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 This module adds the 'Date Range' field to the Odoo CE standard addons
financial reports wizard. financial reports wizard.
@ -19,7 +19,7 @@ Configuration and Usage
.. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas .. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas
:alt: Try me on Runbot :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 Bug Tracker
=========== ===========

1
account_financial_report_date_range/__init__.py

@ -1,2 +1 @@
# -*- coding: utf-8 -*-
from . import wizards from . import wizards

5
account_financial_report_date_range/__manifest__.py

@ -1,14 +1,13 @@
# -*- coding: utf-8 -*-
# Copyright 2009-2018 Noviat. # Copyright 2009-2018 Noviat.
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). # 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': """ 'summary': """
Add Date Range field to the Odoo OE standard addons Add Date Range field to the Odoo OE standard addons
financial reports wizard. financial reports wizard.
""", """,
'version': '10.0.1.0.0',
'version': '11.0.1.0.0',
'category': 'Accounting & Finance', 'category': 'Accounting & Finance',
'website': 'https://github.com/OCA/account-financial-reporting', 'website': 'https://github.com/OCA/account-financial-reporting',
'author': 'Noviat,' 'author': 'Noviat,'

1
account_financial_report_date_range/readme/CONTRIBUTORS.rst

@ -0,0 +1 @@
* Luc De Meyer <luc.demeyer@noviat.com>

2
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.

1
account_financial_report_date_range/readme/INSTALL.rst

@ -0,0 +1 @@
There is no specific installation procedure for this module.

1
account_financial_report_date_range/tests/__init__.py

@ -1,2 +1 @@
# -*- coding: utf-8 -*-
from . import test_accounting_report from . import test_accounting_report

2
account_financial_report_date_range/tests/test_accounting_report.py

@ -1,9 +1,7 @@
# -*- coding: utf-8 -*-
# Copyright 2009-2017 Noviat. # Copyright 2009-2017 Noviat.
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
import time import time
from odoo.tests.common import TransactionCase from odoo.tests.common import TransactionCase

1
account_financial_report_date_range/wizards/__init__.py

@ -1,2 +1 @@
# -*- coding: utf-8 -*-
from . import account_common_report from . import account_common_report

1
account_financial_report_date_range/wizards/account_common_report.py

@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
# Copyright 2009-2017 Noviat. # Copyright 2009-2017 Noviat.
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).

Loading…
Cancel
Save