2
0

[13.0][MIG] account_fiscal_year

This commit is contained in:
Andrea 2019-10-16 09:24:41 +02:00 committed by Benoit Aimont
parent f52652af9e
commit 8b70b927c7
5 changed files with 26 additions and 25 deletions

View File

@ -14,13 +14,13 @@ Account Fiscal Year
:target: http://www.gnu.org/licenses/lgpl-3.0-standalone.html
:alt: License: LGPL-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/12.0/account_fiscal_year
:target: https://github.com/OCA/account-financial-tools/tree/13.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-12-0/account-financial-tools-12-0-account_fiscal_year
:target: https://translation.odoo-community.org/projects/account-financial-tools-13-0/account-financial-tools-13-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/12.0
:target: https://runbot.odoo-community.org/runbot/92/13.0
:alt: Try me on Runbot
|badge1| |badge2| |badge3| |badge4| |badge5|
@ -43,7 +43,7 @@ Bug Tracker
Bugs are tracked on `GitHub Issues <https://github.com/OCA/account-financial-tools/issues>`_.
In case of trouble, please check there if your issue has already been reported.
If you spotted it first, help us smashing it by providing a detailed and welcomed
`feedback <https://github.com/OCA/account-financial-tools/issues/new?body=module:%20account_fiscal_year%0Aversion:%2012.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.
`feedback <https://github.com/OCA/account-financial-tools/issues/new?body=module:%20account_fiscal_year%0Aversion:%2013.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.
Do not contact contributors directly about support or help with technical issues.
@ -84,6 +84,6 @@ Current `maintainer <https://odoo-community.org/page/maintainer-role>`__:
|maintainer-eLBati|
This module is part of the `OCA/account-financial-tools <https://github.com/OCA/account-financial-tools/tree/12.0/account_fiscal_year>`_ project on GitHub.
This module is part of the `OCA/account-financial-tools <https://github.com/OCA/account-financial-tools/tree/13.0/account_fiscal_year>`_ project on GitHub.
You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.

View File

@ -4,22 +4,16 @@
{
"name": "Account Fiscal Year",
"summary": "Create a menu for Account Fiscal Year",
"version": "12.0.1.0.0",
"version": "13.0.1.0.0",
"development_status": "Beta",
"category": "Accounting",
"website": "https://github.com/OCA/account-financial-tools",
"author": "Agile Business Group, Camptocamp SA, "
"Odoo Community Association (OCA)",
"Odoo Community Association (OCA)",
"maintainers": ["eLBati"],
"license": "LGPL-3",
"application": False,
"installable": True,
"depends": [
"account",
"date_range",
],
"data": [
"data/date_range_type.xml",
"views/account_views.xml"
],
"depends": ["account", "date_range"],
"data": ["data/date_range_type.xml", "views/account_views.xml"],
}

View File

@ -1,3 +1,4 @@
* Damien Crier <damien.crier@camptocamp.com>
* Laurent Mignon <laurent.mignon@acsone.eu>
* Lorenzo Battistini <https://github.com/eLBati>
* Andrea Stirpe <a.stirpe@onestein.nl>

View File

@ -1,6 +1,6 @@
This module just adds the menu
Invoicing > Configuration > Accounting > Fiscal Years
Invoicing > Configuration > Accounting > Date ranges > Fiscal Years
This is totally refactored compared to 11 version, because odoo 12 introduced `account.fiscal.year` object.
See https://github.com/OCA/account-financial-tools/pull/706

View File

@ -1,13 +1,19 @@
<?xml version="1.0" encoding="UTF-8"?>
<odoo>
<menuitem id="menu_date_range_accounting" name="Date ranges"
parent="account.account_account_menu" sequence="50"/>
<menuitem action="account.actions_account_fiscal_year"
id="menu_actions_account_fiscal_year"
<menuitem id="menu_date_range_accounting"
name="Date ranges"
parent="account.account_account_menu"
sequence="50"/>
<menuitem id="menu_actions_account_fiscal_year"
action="account.actions_account_fiscal_year"
parent="menu_date_range_accounting" />
<menuitem action="date_range.date_range_action" id="menu_date_range_action_accounting" parent="menu_date_range_accounting"/>
<menuitem action="date_range.date_range_type_action"
id="menu_date_range_type_action_accounting" parent="menu_date_range_accounting"/>
<menuitem action="date_range.date_range_generator_action"
id="menu_date_range_generator_action" parent="menu_date_range_accounting"/>
<menuitem id="menu_date_range_action_accounting"
action="date_range.date_range_action"
parent="menu_date_range_accounting"/>
<menuitem id="menu_date_range_type_action_accounting"
action="date_range.date_range_type_action"
parent="menu_date_range_accounting"/>
<menuitem id="menu_date_range_generator_action"
action="date_range.date_range_generator_action"
parent="menu_date_range_accounting"/>
</odoo>