[MIG] account_financial_report_date_range: Migration to 11.0
parent
573869a990
commit
ca4cb287f7
|
@ -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
|
||||
===========
|
||||
|
|
|
@ -1,2 +1 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
from . import wizards
|
||||
|
|
|
@ -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,'
|
||||
|
|
|
@ -0,0 +1 @@
|
|||
* Luc De Meyer <luc.demeyer@noviat.com>
|
|
@ -0,0 +1,2 @@
|
|||
This module adds the 'Date Range' field to the Odoo CE standard addons
|
||||
financial reports wizard.
|
|
@ -0,0 +1 @@
|
|||
There is no specific installation procedure for this module.
|
|
@ -1,2 +1 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
from . import test_accounting_report
|
||||
|
|
|
@ -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
|
||||
|
||||
|
||||
|
|
|
@ -1,2 +1 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
from . import account_common_report
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# Copyright 2009-2017 Noviat.
|
||||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
||||
|
||||
|
|
Loading…
Reference in New Issue