diff --git a/account_fiscal_month/README.rst b/account_fiscal_month/README.rst new file mode 100644 index 000000000..8e97d7acd --- /dev/null +++ b/account_fiscal_month/README.rst @@ -0,0 +1,73 @@ +==================== +Account Fiscal Month +==================== + +.. !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! This file is generated by oca-gen-addon-readme !! + !! changes will be overwritten. !! + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + +.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png + :target: https://odoo-community.org/page/development-status + :alt: Beta +.. |badge2| image:: https://img.shields.io/badge/licence-AGPL--3-blue.png + :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html + :alt: License: AGPL-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/14.0/account_fiscal_month + :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-14-0/account-financial-tools-14-0-account_fiscal_month + :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/14.0 + :alt: Try me on Runbot + +|badge1| |badge2| |badge3| |badge4| |badge5| + +This module simply provides a date range type marked as 'Fiscal month'. + +**Table of contents** + +.. contents:: + :local: + +Bug Tracker +=========== + +Bugs are tracked on `GitHub 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 `_. + +Do not contact contributors directly about support or help with technical issues. + +Credits +======= + +Authors +~~~~~~~ + +* ACSONE SA/NV + +Contributors +~~~~~~~~~~~~ + +* Benjamin Willig + +Maintainers +~~~~~~~~~~~ + +This module is maintained by the OCA. + +.. image:: https://odoo-community.org/logo.png + :alt: Odoo Community Association + :target: https://odoo-community.org + +OCA, or the Odoo Community Association, is a nonprofit organization whose +mission is to support the collaborative development of Odoo features and +promote its widespread use. + +This module is part of the `OCA/account-financial-tools `_ project on GitHub. + +You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute. diff --git a/account_fiscal_month/__init__.py b/account_fiscal_month/__init__.py new file mode 100644 index 000000000..0650744f6 --- /dev/null +++ b/account_fiscal_month/__init__.py @@ -0,0 +1 @@ +from . import models diff --git a/account_fiscal_month/__manifest__.py b/account_fiscal_month/__manifest__.py new file mode 100644 index 000000000..3527c3e93 --- /dev/null +++ b/account_fiscal_month/__manifest__.py @@ -0,0 +1,13 @@ +# Copyright 2017 ACSONE SA/NV +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + +{ + "name": "Account Fiscal Month", + "summary": """Provide a fiscal month date range type""", + "version": "15.0.1.0.0", + "license": "AGPL-3", + "author": "ACSONE SA/NV, Odoo Community Association (OCA)", + "website": "https://github.com/OCA/account-financial-tools", + "depends": ["account", "date_range"], + "data": ["data/date_range_type.xml", "views/date_range_type.xml"], +} diff --git a/account_fiscal_month/data/date_range_type.xml b/account_fiscal_month/data/date_range_type.xml new file mode 100644 index 000000000..09b13d83b --- /dev/null +++ b/account_fiscal_month/data/date_range_type.xml @@ -0,0 +1,10 @@ + + + + + Fiscal month + + + + diff --git a/account_fiscal_month/i18n/account_fiscal_month.pot b/account_fiscal_month/i18n/account_fiscal_month.pot new file mode 100644 index 000000000..18a17e0b4 --- /dev/null +++ b/account_fiscal_month/i18n/account_fiscal_month.pot @@ -0,0 +1,58 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_fiscal_month +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"Last-Translator: \n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: \n" + +#. module: account_fiscal_month +#: model:ir.model,name:account_fiscal_month.model_res_company +msgid "Companies" +msgstr "" + +#. module: account_fiscal_month +#: model:ir.model,name:account_fiscal_month.model_date_range_type +msgid "Date Range Type" +msgstr "" + +#. module: account_fiscal_month +#: model:ir.model.fields,field_description:account_fiscal_month.field_date_range_type__display_name +#: model:ir.model.fields,field_description:account_fiscal_month.field_res_company__display_name +msgid "Display Name" +msgstr "" + +#. module: account_fiscal_month +#: model:date.range.type,name:account_fiscal_month.date_range_fiscal_month +msgid "Fiscal month" +msgstr "" + +#. module: account_fiscal_month +#: model:ir.model.fields,field_description:account_fiscal_month.field_date_range_type__id +#: model:ir.model.fields,field_description:account_fiscal_month.field_res_company__id +msgid "ID" +msgstr "" + +#. module: account_fiscal_month +#: model:ir.model.fields,field_description:account_fiscal_month.field_date_range_type__fiscal_month +msgid "Is fiscal month?" +msgstr "" + +#. module: account_fiscal_month +#: model:ir.model.fields,field_description:account_fiscal_month.field_date_range_type____last_update +#: model:ir.model.fields,field_description:account_fiscal_month.field_res_company____last_update +msgid "Last Modified on" +msgstr "" + +#. module: account_fiscal_month +#: code:addons/account_fiscal_month/models/date_range_type.py:0 +#, python-format +msgid "You can't delete date range type: Fiscal month" +msgstr "" diff --git a/account_fiscal_month/i18n/de.po b/account_fiscal_month/i18n/de.po new file mode 100644 index 000000000..19831cd95 --- /dev/null +++ b/account_fiscal_month/i18n/de.po @@ -0,0 +1,46 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_fiscal_month +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-11-28 23:23+0000\n" +"PO-Revision-Date: 2020-05-06 13:19+0000\n" +"Last-Translator: Maria Sparenberg \n" +"Language-Team: German (https://www.transifex.com/oca/teams/23907/de/)\n" +"Language: de\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 3.10\n" + +#. module: account_fiscal_month +#: model:ir.model,name:account_fiscal_month.model_res_company +msgid "Companies" +msgstr "Unternehmen" + +#. module: account_fiscal_month +#: model:ir.model,name:account_fiscal_month.model_date_range_type +msgid "Date Range Type" +msgstr "Datumsbereichstyp" + +#. module: account_fiscal_month +#: model:date.range.type,name:account_fiscal_month.date_range_fiscal_month +msgid "Fiscal month" +msgstr "Steuermonat" + +#. module: account_fiscal_month +#: model:ir.model.fields,field_description:account_fiscal_month.field_date_range_type__fiscal_month +msgid "Is fiscal month?" +msgstr "Ist Steuermonat?" + +#. module: account_fiscal_month +#: code:addons/account_fiscal_month/models/date_range_type.py:18 +#, python-format +msgid "You can't delete date range type: Fiscal month" +msgstr "Der Datumsbereichstyp 'Steuermonat' kann nicht gelöscht werden." diff --git a/account_fiscal_month/i18n/el_GR.po b/account_fiscal_month/i18n/el_GR.po new file mode 100644 index 000000000..b2f832843 --- /dev/null +++ b/account_fiscal_month/i18n/el_GR.po @@ -0,0 +1,46 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_fiscal_month +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-11-28 23:23+0000\n" +"PO-Revision-Date: 2017-11-28 23:23+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Greek (Greece) (https://www.transifex.com/oca/teams/23907/" +"el_GR/)\n" +"Language: el_GR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_fiscal_month +#: model:ir.model,name:account_fiscal_month.model_res_company +msgid "Companies" +msgstr "Εταιρείες" + +#. module: account_fiscal_month +#: model:ir.model,name:account_fiscal_month.model_date_range_type +msgid "Date Range Type" +msgstr "" + +#. module: account_fiscal_month +#: model:date.range.type,name:account_fiscal_month.date_range_fiscal_month +msgid "Fiscal month" +msgstr "" + +#. module: account_fiscal_month +#: model:ir.model.fields,field_description:account_fiscal_month.field_date_range_type__fiscal_month +msgid "Is fiscal month?" +msgstr "" + +#. module: account_fiscal_month +#: code:addons/account_fiscal_month/models/date_range_type.py:18 +#, python-format +msgid "You can't delete date range type: Fiscal month" +msgstr "" diff --git a/account_fiscal_month/i18n/es.po b/account_fiscal_month/i18n/es.po new file mode 100644 index 000000000..30d1c699d --- /dev/null +++ b/account_fiscal_month/i18n/es.po @@ -0,0 +1,46 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_fiscal_month +# +# Translators: +# Pedro M. Baeza , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-11-28 23:23+0000\n" +"PO-Revision-Date: 2017-11-28 23:23+0000\n" +"Last-Translator: Pedro M. Baeza , 2017\n" +"Language-Team: Spanish (https://www.transifex.com/oca/teams/23907/es/)\n" +"Language: es\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_fiscal_month +#: model:ir.model,name:account_fiscal_month.model_res_company +msgid "Companies" +msgstr "Compañías" + +#. module: account_fiscal_month +#: model:ir.model,name:account_fiscal_month.model_date_range_type +#, fuzzy +msgid "Date Range Type" +msgstr "date.range.type" + +#. module: account_fiscal_month +#: model:date.range.type,name:account_fiscal_month.date_range_fiscal_month +msgid "Fiscal month" +msgstr "" + +#. module: account_fiscal_month +#: model:ir.model.fields,field_description:account_fiscal_month.field_date_range_type__fiscal_month +msgid "Is fiscal month?" +msgstr "" + +#. module: account_fiscal_month +#: code:addons/account_fiscal_month/models/date_range_type.py:18 +#, python-format +msgid "You can't delete date range type: Fiscal month" +msgstr "" diff --git a/account_fiscal_month/i18n/es_EC.po b/account_fiscal_month/i18n/es_EC.po new file mode 100644 index 000000000..fd6ff4288 --- /dev/null +++ b/account_fiscal_month/i18n/es_EC.po @@ -0,0 +1,46 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_fiscal_month +# +# Translators: +# Cristian Salamea , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-11-28 23:23+0000\n" +"PO-Revision-Date: 2017-11-28 23:23+0000\n" +"Last-Translator: Cristian Salamea , 2017\n" +"Language-Team: Spanish (Ecuador) (https://www.transifex.com/oca/teams/23907/" +"es_EC/)\n" +"Language: es_EC\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_fiscal_month +#: model:ir.model,name:account_fiscal_month.model_res_company +msgid "Companies" +msgstr "Compañías" + +#. module: account_fiscal_month +#: model:ir.model,name:account_fiscal_month.model_date_range_type +msgid "Date Range Type" +msgstr "" + +#. module: account_fiscal_month +#: model:date.range.type,name:account_fiscal_month.date_range_fiscal_month +msgid "Fiscal month" +msgstr "" + +#. module: account_fiscal_month +#: model:ir.model.fields,field_description:account_fiscal_month.field_date_range_type__fiscal_month +msgid "Is fiscal month?" +msgstr "" + +#. module: account_fiscal_month +#: code:addons/account_fiscal_month/models/date_range_type.py:18 +#, python-format +msgid "You can't delete date range type: Fiscal month" +msgstr "" diff --git a/account_fiscal_month/i18n/fi.po b/account_fiscal_month/i18n/fi.po new file mode 100644 index 000000000..19e610458 --- /dev/null +++ b/account_fiscal_month/i18n/fi.po @@ -0,0 +1,45 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_fiscal_month +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-11-28 23:23+0000\n" +"PO-Revision-Date: 2017-11-28 23:23+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Finnish (https://www.transifex.com/oca/teams/23907/fi/)\n" +"Language: fi\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_fiscal_month +#: model:ir.model,name:account_fiscal_month.model_res_company +msgid "Companies" +msgstr "Yritykset" + +#. module: account_fiscal_month +#: model:ir.model,name:account_fiscal_month.model_date_range_type +msgid "Date Range Type" +msgstr "" + +#. module: account_fiscal_month +#: model:date.range.type,name:account_fiscal_month.date_range_fiscal_month +msgid "Fiscal month" +msgstr "" + +#. module: account_fiscal_month +#: model:ir.model.fields,field_description:account_fiscal_month.field_date_range_type__fiscal_month +msgid "Is fiscal month?" +msgstr "" + +#. module: account_fiscal_month +#: code:addons/account_fiscal_month/models/date_range_type.py:18 +#, python-format +msgid "You can't delete date range type: Fiscal month" +msgstr "" diff --git a/account_fiscal_month/i18n/fr.po b/account_fiscal_month/i18n/fr.po new file mode 100644 index 000000000..77f8aff48 --- /dev/null +++ b/account_fiscal_month/i18n/fr.po @@ -0,0 +1,45 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_fiscal_month +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-11-28 23:23+0000\n" +"PO-Revision-Date: 2017-11-28 23:23+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: French (https://www.transifex.com/oca/teams/23907/fr/)\n" +"Language: fr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: account_fiscal_month +#: model:ir.model,name:account_fiscal_month.model_res_company +msgid "Companies" +msgstr "Sociétés" + +#. module: account_fiscal_month +#: model:ir.model,name:account_fiscal_month.model_date_range_type +msgid "Date Range Type" +msgstr "" + +#. module: account_fiscal_month +#: model:date.range.type,name:account_fiscal_month.date_range_fiscal_month +msgid "Fiscal month" +msgstr "" + +#. module: account_fiscal_month +#: model:ir.model.fields,field_description:account_fiscal_month.field_date_range_type__fiscal_month +msgid "Is fiscal month?" +msgstr "" + +#. module: account_fiscal_month +#: code:addons/account_fiscal_month/models/date_range_type.py:18 +#, python-format +msgid "You can't delete date range type: Fiscal month" +msgstr "" diff --git a/account_fiscal_month/i18n/hr.po b/account_fiscal_month/i18n/hr.po new file mode 100644 index 000000000..f9bd5929c --- /dev/null +++ b/account_fiscal_month/i18n/hr.po @@ -0,0 +1,47 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_fiscal_month +# +# Translators: +# Bole , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-02-23 01:41+0000\n" +"PO-Revision-Date: 2019-11-12 15:34+0000\n" +"Last-Translator: Bole \n" +"Language-Team: Croatian (https://www.transifex.com/oca/teams/23907/hr/)\n" +"Language: hr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=" +"4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" +"X-Generator: Weblate 3.8\n" + +#. module: account_fiscal_month +#: model:ir.model,name:account_fiscal_month.model_res_company +msgid "Companies" +msgstr "Poduzeća" + +#. module: account_fiscal_month +#: model:ir.model,name:account_fiscal_month.model_date_range_type +msgid "Date Range Type" +msgstr "date.range.type" + +#. module: account_fiscal_month +#: model:date.range.type,name:account_fiscal_month.date_range_fiscal_month +msgid "Fiscal month" +msgstr "Fiskalni mjesec" + +#. module: account_fiscal_month +#: model:ir.model.fields,field_description:account_fiscal_month.field_date_range_type__fiscal_month +msgid "Is fiscal month?" +msgstr "Je fiskalni mjesec?" + +#. module: account_fiscal_month +#: code:addons/account_fiscal_month/models/date_range_type.py:18 +#, python-format +msgid "You can't delete date range type: Fiscal month" +msgstr "Nije moguće brisanje raspona tipa \"Fiskalni mjesec\"" diff --git a/account_fiscal_month/i18n/hr_HR.po b/account_fiscal_month/i18n/hr_HR.po new file mode 100644 index 000000000..c0e909786 --- /dev/null +++ b/account_fiscal_month/i18n/hr_HR.po @@ -0,0 +1,48 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_fiscal_month +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-11-28 23:23+0000\n" +"PO-Revision-Date: 2017-11-28 23:23+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Croatian (Croatia) (https://www.transifex.com/oca/teams/23907/" +"hr_HR/)\n" +"Language: hr_HR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" + +#. module: account_fiscal_month +#: model:ir.model,name:account_fiscal_month.model_res_company +msgid "Companies" +msgstr "Poduzeća" + +#. module: account_fiscal_month +#: model:ir.model,name:account_fiscal_month.model_date_range_type +#, fuzzy +msgid "Date Range Type" +msgstr "date.range.type" + +#. module: account_fiscal_month +#: model:date.range.type,name:account_fiscal_month.date_range_fiscal_month +msgid "Fiscal month" +msgstr "" + +#. module: account_fiscal_month +#: model:ir.model.fields,field_description:account_fiscal_month.field_date_range_type__fiscal_month +msgid "Is fiscal month?" +msgstr "" + +#. module: account_fiscal_month +#: code:addons/account_fiscal_month/models/date_range_type.py:18 +#, python-format +msgid "You can't delete date range type: Fiscal month" +msgstr "" diff --git a/account_fiscal_month/i18n/it.po b/account_fiscal_month/i18n/it.po new file mode 100644 index 000000000..d2353293b --- /dev/null +++ b/account_fiscal_month/i18n/it.po @@ -0,0 +1,46 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_fiscal_month +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-11-28 23:23+0000\n" +"PO-Revision-Date: 2017-11-28 23:23+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Italian (https://www.transifex.com/oca/teams/23907/it/)\n" +"Language: it\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_fiscal_month +#: model:ir.model,name:account_fiscal_month.model_res_company +msgid "Companies" +msgstr "Azienda" + +#. module: account_fiscal_month +#: model:ir.model,name:account_fiscal_month.model_date_range_type +#, fuzzy +msgid "Date Range Type" +msgstr "date.range.type" + +#. module: account_fiscal_month +#: model:date.range.type,name:account_fiscal_month.date_range_fiscal_month +msgid "Fiscal month" +msgstr "" + +#. module: account_fiscal_month +#: model:ir.model.fields,field_description:account_fiscal_month.field_date_range_type__fiscal_month +msgid "Is fiscal month?" +msgstr "" + +#. module: account_fiscal_month +#: code:addons/account_fiscal_month/models/date_range_type.py:18 +#, python-format +msgid "You can't delete date range type: Fiscal month" +msgstr "" diff --git a/account_fiscal_month/i18n/lt.po b/account_fiscal_month/i18n/lt.po new file mode 100644 index 000000000..46bc5cbc7 --- /dev/null +++ b/account_fiscal_month/i18n/lt.po @@ -0,0 +1,46 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_fiscal_month +# +# Translators: +# Viktoras Norkus , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-01-25 11:46+0000\n" +"PO-Revision-Date: 2018-01-25 11:46+0000\n" +"Last-Translator: Viktoras Norkus , 2018\n" +"Language-Team: Lithuanian (https://www.transifex.com/oca/teams/23907/lt/)\n" +"Language: lt\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n" +"%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: account_fiscal_month +#: model:ir.model,name:account_fiscal_month.model_res_company +msgid "Companies" +msgstr "Įmonės" + +#. module: account_fiscal_month +#: model:ir.model,name:account_fiscal_month.model_date_range_type +msgid "Date Range Type" +msgstr "" + +#. module: account_fiscal_month +#: model:date.range.type,name:account_fiscal_month.date_range_fiscal_month +msgid "Fiscal month" +msgstr "" + +#. module: account_fiscal_month +#: model:ir.model.fields,field_description:account_fiscal_month.field_date_range_type__fiscal_month +msgid "Is fiscal month?" +msgstr "" + +#. module: account_fiscal_month +#: code:addons/account_fiscal_month/models/date_range_type.py:18 +#, python-format +msgid "You can't delete date range type: Fiscal month" +msgstr "" diff --git a/account_fiscal_month/i18n/nl.po b/account_fiscal_month/i18n/nl.po new file mode 100644 index 000000000..470603ee0 --- /dev/null +++ b/account_fiscal_month/i18n/nl.po @@ -0,0 +1,45 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_fiscal_month +# +# Translators: +# Frank Schellenberg , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-01-25 11:46+0000\n" +"PO-Revision-Date: 2018-01-25 11:46+0000\n" +"Last-Translator: Frank Schellenberg , 2018\n" +"Language-Team: Dutch (https://www.transifex.com/oca/teams/23907/nl/)\n" +"Language: nl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_fiscal_month +#: model:ir.model,name:account_fiscal_month.model_res_company +msgid "Companies" +msgstr "Bedrijven" + +#. module: account_fiscal_month +#: model:ir.model,name:account_fiscal_month.model_date_range_type +msgid "Date Range Type" +msgstr "" + +#. module: account_fiscal_month +#: model:date.range.type,name:account_fiscal_month.date_range_fiscal_month +msgid "Fiscal month" +msgstr "" + +#. module: account_fiscal_month +#: model:ir.model.fields,field_description:account_fiscal_month.field_date_range_type__fiscal_month +msgid "Is fiscal month?" +msgstr "" + +#. module: account_fiscal_month +#: code:addons/account_fiscal_month/models/date_range_type.py:18 +#, python-format +msgid "You can't delete date range type: Fiscal month" +msgstr "" diff --git a/account_fiscal_month/i18n/nl_NL.po b/account_fiscal_month/i18n/nl_NL.po new file mode 100644 index 000000000..c04574137 --- /dev/null +++ b/account_fiscal_month/i18n/nl_NL.po @@ -0,0 +1,46 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_fiscal_month +# +# Translators: +# Frank Schellenberg , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-01-25 11:46+0000\n" +"PO-Revision-Date: 2018-01-25 11:46+0000\n" +"Last-Translator: Frank Schellenberg , 2018\n" +"Language-Team: Dutch (Netherlands) (https://www.transifex.com/oca/" +"teams/23907/nl_NL/)\n" +"Language: nl_NL\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_fiscal_month +#: model:ir.model,name:account_fiscal_month.model_res_company +msgid "Companies" +msgstr "Bedrijven" + +#. module: account_fiscal_month +#: model:ir.model,name:account_fiscal_month.model_date_range_type +msgid "Date Range Type" +msgstr "" + +#. module: account_fiscal_month +#: model:date.range.type,name:account_fiscal_month.date_range_fiscal_month +msgid "Fiscal month" +msgstr "" + +#. module: account_fiscal_month +#: model:ir.model.fields,field_description:account_fiscal_month.field_date_range_type__fiscal_month +msgid "Is fiscal month?" +msgstr "" + +#. module: account_fiscal_month +#: code:addons/account_fiscal_month/models/date_range_type.py:18 +#, python-format +msgid "You can't delete date range type: Fiscal month" +msgstr "" diff --git a/account_fiscal_month/i18n/pt.po b/account_fiscal_month/i18n/pt.po new file mode 100644 index 000000000..c71649e68 --- /dev/null +++ b/account_fiscal_month/i18n/pt.po @@ -0,0 +1,46 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_fiscal_month +# +# Translators: +# Pedro Castro Silva , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-12-08 23:22+0000\n" +"PO-Revision-Date: 2020-02-28 00:14+0000\n" +"Last-Translator: alvarorib \n" +"Language-Team: Portuguese (https://www.transifex.com/oca/teams/23907/pt/)\n" +"Language: pt\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: Weblate 3.10\n" + +#. module: account_fiscal_month +#: model:ir.model,name:account_fiscal_month.model_res_company +msgid "Companies" +msgstr "Empresas" + +#. module: account_fiscal_month +#: model:ir.model,name:account_fiscal_month.model_date_range_type +msgid "Date Range Type" +msgstr "Tipo de Período" + +#. module: account_fiscal_month +#: model:date.range.type,name:account_fiscal_month.date_range_fiscal_month +msgid "Fiscal month" +msgstr "Mês fiscal" + +#. module: account_fiscal_month +#: model:ir.model.fields,field_description:account_fiscal_month.field_date_range_type__fiscal_month +msgid "Is fiscal month?" +msgstr "É um mês fiscal?" + +#. module: account_fiscal_month +#: code:addons/account_fiscal_month/models/date_range_type.py:18 +#, python-format +msgid "You can't delete date range type: Fiscal month" +msgstr "Não pode eliminar o tipo de período: Mês Fiscal" diff --git a/account_fiscal_month/i18n/pt_BR.po b/account_fiscal_month/i18n/pt_BR.po new file mode 100644 index 000000000..8152f4d2d --- /dev/null +++ b/account_fiscal_month/i18n/pt_BR.po @@ -0,0 +1,47 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_fiscal_month +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-11-28 23:23+0000\n" +"PO-Revision-Date: 2020-06-16 15:19+0000\n" +"Last-Translator: Maurício Liell \n" +"Language-Team: Portuguese (Brazil) (https://www.transifex.com/oca/teams/" +"23907/pt_BR/)\n" +"Language: pt_BR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=n > 1;\n" +"X-Generator: Weblate 3.10\n" + +#. module: account_fiscal_month +#: model:ir.model,name:account_fiscal_month.model_res_company +msgid "Companies" +msgstr "Empresas" + +#. module: account_fiscal_month +#: model:ir.model,name:account_fiscal_month.model_date_range_type +msgid "Date Range Type" +msgstr "Tipo de período" + +#. module: account_fiscal_month +#: model:date.range.type,name:account_fiscal_month.date_range_fiscal_month +msgid "Fiscal month" +msgstr "Mês fiscal" + +#. module: account_fiscal_month +#: model:ir.model.fields,field_description:account_fiscal_month.field_date_range_type__fiscal_month +msgid "Is fiscal month?" +msgstr "É um mês fiscal?" + +#. module: account_fiscal_month +#: code:addons/account_fiscal_month/models/date_range_type.py:18 +#, python-format +msgid "You can't delete date range type: Fiscal month" +msgstr "Você não pode excluir o tipo de período: Mês Fiscal" diff --git a/account_fiscal_month/i18n/sk.po b/account_fiscal_month/i18n/sk.po new file mode 100644 index 000000000..53a89791f --- /dev/null +++ b/account_fiscal_month/i18n/sk.po @@ -0,0 +1,45 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_fiscal_month +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-11-28 23:23+0000\n" +"PO-Revision-Date: 2017-11-28 23:23+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Slovak (https://www.transifex.com/oca/teams/23907/sk/)\n" +"Language: sk\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" + +#. module: account_fiscal_month +#: model:ir.model,name:account_fiscal_month.model_res_company +msgid "Companies" +msgstr "Spoločnosti" + +#. module: account_fiscal_month +#: model:ir.model,name:account_fiscal_month.model_date_range_type +msgid "Date Range Type" +msgstr "" + +#. module: account_fiscal_month +#: model:date.range.type,name:account_fiscal_month.date_range_fiscal_month +msgid "Fiscal month" +msgstr "" + +#. module: account_fiscal_month +#: model:ir.model.fields,field_description:account_fiscal_month.field_date_range_type__fiscal_month +msgid "Is fiscal month?" +msgstr "" + +#. module: account_fiscal_month +#: code:addons/account_fiscal_month/models/date_range_type.py:18 +#, python-format +msgid "You can't delete date range type: Fiscal month" +msgstr "" diff --git a/account_fiscal_month/i18n/sl.po b/account_fiscal_month/i18n/sl.po new file mode 100644 index 000000000..6b3e5f578 --- /dev/null +++ b/account_fiscal_month/i18n/sl.po @@ -0,0 +1,46 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_fiscal_month +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-11-28 23:23+0000\n" +"PO-Revision-Date: 2017-11-28 23:23+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Slovenian (https://www.transifex.com/oca/teams/23907/sl/)\n" +"Language: sl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" +"%100==4 ? 2 : 3);\n" + +#. module: account_fiscal_month +#: model:ir.model,name:account_fiscal_month.model_res_company +msgid "Companies" +msgstr "Družbe" + +#. module: account_fiscal_month +#: model:ir.model,name:account_fiscal_month.model_date_range_type +msgid "Date Range Type" +msgstr "" + +#. module: account_fiscal_month +#: model:date.range.type,name:account_fiscal_month.date_range_fiscal_month +msgid "Fiscal month" +msgstr "" + +#. module: account_fiscal_month +#: model:ir.model.fields,field_description:account_fiscal_month.field_date_range_type__fiscal_month +msgid "Is fiscal month?" +msgstr "" + +#. module: account_fiscal_month +#: code:addons/account_fiscal_month/models/date_range_type.py:18 +#, python-format +msgid "You can't delete date range type: Fiscal month" +msgstr "" diff --git a/account_fiscal_month/i18n/tr.po b/account_fiscal_month/i18n/tr.po new file mode 100644 index 000000000..443fe1ea9 --- /dev/null +++ b/account_fiscal_month/i18n/tr.po @@ -0,0 +1,45 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_fiscal_month +# +# Translators: +# Ediz Duman , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-11-28 23:23+0000\n" +"PO-Revision-Date: 2017-11-28 23:23+0000\n" +"Last-Translator: Ediz Duman , 2017\n" +"Language-Team: Turkish (https://www.transifex.com/oca/teams/23907/tr/)\n" +"Language: tr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: account_fiscal_month +#: model:ir.model,name:account_fiscal_month.model_res_company +msgid "Companies" +msgstr "Firmalar" + +#. module: account_fiscal_month +#: model:ir.model,name:account_fiscal_month.model_date_range_type +msgid "Date Range Type" +msgstr "" + +#. module: account_fiscal_month +#: model:date.range.type,name:account_fiscal_month.date_range_fiscal_month +msgid "Fiscal month" +msgstr "" + +#. module: account_fiscal_month +#: model:ir.model.fields,field_description:account_fiscal_month.field_date_range_type__fiscal_month +msgid "Is fiscal month?" +msgstr "" + +#. module: account_fiscal_month +#: code:addons/account_fiscal_month/models/date_range_type.py:18 +#, python-format +msgid "You can't delete date range type: Fiscal month" +msgstr "" diff --git a/account_fiscal_month/i18n/tr_TR.po b/account_fiscal_month/i18n/tr_TR.po new file mode 100644 index 000000000..860a68bce --- /dev/null +++ b/account_fiscal_month/i18n/tr_TR.po @@ -0,0 +1,46 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_fiscal_month +# +# Translators: +# Ediz Duman , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-11-28 23:23+0000\n" +"PO-Revision-Date: 2017-11-28 23:23+0000\n" +"Last-Translator: Ediz Duman , 2017\n" +"Language-Team: Turkish (Turkey) (https://www.transifex.com/oca/teams/23907/" +"tr_TR/)\n" +"Language: tr_TR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: account_fiscal_month +#: model:ir.model,name:account_fiscal_month.model_res_company +msgid "Companies" +msgstr "Firmalar" + +#. module: account_fiscal_month +#: model:ir.model,name:account_fiscal_month.model_date_range_type +msgid "Date Range Type" +msgstr "" + +#. module: account_fiscal_month +#: model:date.range.type,name:account_fiscal_month.date_range_fiscal_month +msgid "Fiscal month" +msgstr "" + +#. module: account_fiscal_month +#: model:ir.model.fields,field_description:account_fiscal_month.field_date_range_type__fiscal_month +msgid "Is fiscal month?" +msgstr "" + +#. module: account_fiscal_month +#: code:addons/account_fiscal_month/models/date_range_type.py:18 +#, python-format +msgid "You can't delete date range type: Fiscal month" +msgstr "" diff --git a/account_fiscal_month/models/__init__.py b/account_fiscal_month/models/__init__.py new file mode 100644 index 000000000..55f0021bf --- /dev/null +++ b/account_fiscal_month/models/__init__.py @@ -0,0 +1,2 @@ +from . import date_range_type +from . import res_company diff --git a/account_fiscal_month/models/date_range_type.py b/account_fiscal_month/models/date_range_type.py new file mode 100644 index 000000000..63382ae46 --- /dev/null +++ b/account_fiscal_month/models/date_range_type.py @@ -0,0 +1,19 @@ +# Copyright 2017 ACSONE SA/NV +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + +from odoo import _, fields, models +from odoo.exceptions import UserError + + +class DateRangeType(models.Model): + _inherit = "date.range.type" + + fiscal_month = fields.Boolean(string="Is fiscal month?", readonly=True) + + def unlink(self): + date_range_type_fm = self.env.ref( + "account_fiscal_month.date_range_fiscal_month" + ) + if date_range_type_fm.id in self.ids: + raise UserError(_("You can't delete date range type: " "Fiscal month")) + return super().unlink() diff --git a/account_fiscal_month/models/res_company.py b/account_fiscal_month/models/res_company.py new file mode 100644 index 000000000..197689b9e --- /dev/null +++ b/account_fiscal_month/models/res_company.py @@ -0,0 +1,25 @@ +# Copyright 2017 ACSONE SA/NV +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + +from odoo import models + + +class ResCompany(models.Model): + + _inherit = "res.company" + + def find_daterange_fm(self, date_str): + self.ensure_one() + fm_id = self.env.ref("account_fiscal_month.date_range_fiscal_month") + return self.env["date.range"].search( + [ + ("type_id", "=", fm_id.id), + ("date_start", "<=", date_str), + ("date_end", ">=", date_str), + "|", + ("company_id", "=", self.id), + ("company_id", "=", False), + ], + limit=1, + order="company_id asc", + ) diff --git a/account_fiscal_month/readme/CONTRIBUTORS.rst b/account_fiscal_month/readme/CONTRIBUTORS.rst new file mode 100644 index 000000000..eea6cac08 --- /dev/null +++ b/account_fiscal_month/readme/CONTRIBUTORS.rst @@ -0,0 +1 @@ +* Benjamin Willig diff --git a/account_fiscal_month/readme/DESCRIPTION.rst b/account_fiscal_month/readme/DESCRIPTION.rst new file mode 100644 index 000000000..9bd2eac06 --- /dev/null +++ b/account_fiscal_month/readme/DESCRIPTION.rst @@ -0,0 +1 @@ +This module simply provides a date range type marked as 'Fiscal month'. diff --git a/account_fiscal_month/static/description/icon.png b/account_fiscal_month/static/description/icon.png new file mode 100644 index 000000000..3a0328b51 Binary files /dev/null and b/account_fiscal_month/static/description/icon.png differ diff --git a/account_fiscal_month/static/description/index.html b/account_fiscal_month/static/description/index.html new file mode 100644 index 000000000..67615ee7f --- /dev/null +++ b/account_fiscal_month/static/description/index.html @@ -0,0 +1,419 @@ + + + + + + +Account Fiscal Month + + + +
+

Account Fiscal Month

+ + +

Beta License: AGPL-3 OCA/account-financial-tools Translate me on Weblate Try me on Runbot

+

This module simply provides a date range type marked as ‘Fiscal month’.

+

Table of contents

+ +
+

Bug Tracker

+

Bugs are tracked on GitHub 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.

+

Do not contact contributors directly about support or help with technical issues.

+
+
+

Credits

+
+

Authors

+
    +
  • ACSONE SA/NV
  • +
+
+
+

Contributors

+ +
+
+

Maintainers

+

This module is maintained by the OCA.

+Odoo Community Association +

OCA, or the Odoo Community Association, is a nonprofit organization whose +mission is to support the collaborative development of Odoo features and +promote its widespread use.

+

This module is part of the OCA/account-financial-tools project on GitHub.

+

You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.

+
+
+
+ + diff --git a/account_fiscal_month/tests/__init__.py b/account_fiscal_month/tests/__init__.py new file mode 100644 index 000000000..d36402d52 --- /dev/null +++ b/account_fiscal_month/tests/__init__.py @@ -0,0 +1 @@ +from . import test_account_fiscal_month diff --git a/account_fiscal_month/tests/test_account_fiscal_month.py b/account_fiscal_month/tests/test_account_fiscal_month.py new file mode 100644 index 000000000..1f132f83b --- /dev/null +++ b/account_fiscal_month/tests/test_account_fiscal_month.py @@ -0,0 +1,69 @@ +# Copyright 2017 ACSONE SA/NV +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + +from psycopg2 import IntegrityError + +from odoo.exceptions import UserError +from odoo.fields import Date +from odoo.tests.common import TransactionCase +from odoo.tools import mute_logger + + +class TestAccountFiscalMonth(TransactionCase): + def setUp(self): + super(TestAccountFiscalMonth, self).setUp() + self.DateRangeObj = self.env["date.range"] + self.DateRangeType = self.env["date.range.type"] + + self.company = self.env.ref("base.main_company") + + self.date_range_type = self.DateRangeType.create( + {"name": "Other Type", "allow_overlap": False} + ) + self.date_range_type_month = self.env.ref( + "account_fiscal_month.date_range_fiscal_month" + ) + + self.date_range_1 = self.DateRangeObj.create( + { + "name": "Other", + "date_start": "2017-01-01", + "date_end": "2017-01-31", + "type_id": self.date_range_type.id, + "company_id": self.company.id, + } + ) + + self.date_range_january_2017 = self.DateRangeObj.create( + { + "name": "January 2017", + "date_start": "2017-01-01", + "date_end": "2017-01-31", + "type_id": self.date_range_type_month.id, + "company_id": self.company.id, + } + ) + self.date_range_january_no_comp_2017 = self.DateRangeObj.create( + { + "name": "January 2017", + "date_start": "2017-01-01", + "date_end": "2017-01-31", + "type_id": self.date_range_type_month.id, + "company_id": False, + } + ) + + def test_00_delete_type(self): + with self.assertRaises(IntegrityError), mute_logger("odoo.sql_db"): + self.date_range_type.unlink() + + def test_01_delete_type_fiscal_month(self): + with self.assertRaises(UserError): + self.date_range_type_month.unlink() + + def test_02_search_date_range(self): + january_2017_1st = Date.from_string("2017-01-01") + date_ranges = self.company.find_daterange_fm(january_2017_1st) + + self.assertEqual(len(date_ranges), 1) + self.assertEqual(date_ranges[0], self.date_range_january_2017) diff --git a/account_fiscal_month/views/date_range_type.xml b/account_fiscal_month/views/date_range_type.xml new file mode 100644 index 000000000..cf80ac22e --- /dev/null +++ b/account_fiscal_month/views/date_range_type.xml @@ -0,0 +1,25 @@ + + + + + date.range.type.form (in account_fiscal_month) + date.range.type + + + + + + + + + date.range.type.tree (in account_fiscal_month) + date.range.type + + + + + + + + diff --git a/setup/account_fiscal_month/odoo/addons/account_fiscal_month b/setup/account_fiscal_month/odoo/addons/account_fiscal_month new file mode 120000 index 000000000..3317a65e3 --- /dev/null +++ b/setup/account_fiscal_month/odoo/addons/account_fiscal_month @@ -0,0 +1 @@ +../../../../account_fiscal_month \ No newline at end of file diff --git a/setup/account_fiscal_month/setup.py b/setup/account_fiscal_month/setup.py new file mode 100644 index 000000000..28c57bb64 --- /dev/null +++ b/setup/account_fiscal_month/setup.py @@ -0,0 +1,6 @@ +import setuptools + +setuptools.setup( + setup_requires=['setuptools-odoo'], + odoo_addon=True, +)