diff --git a/fleet_vehicle_fuel_type_ethanol/README.rst b/fleet_vehicle_fuel_type_ethanol/README.rst new file mode 100644 index 00000000..764c5cfe --- /dev/null +++ b/fleet_vehicle_fuel_type_ethanol/README.rst @@ -0,0 +1,97 @@ +=============================== +Fleet Vehicle Fuel Type Ethanol +=============================== + +.. + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! This file is generated by oca-gen-addon-readme !! + !! changes will be overwritten. !! + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! source digest: sha256:6248f3531dff8980859ff95b5f7d2ddeeb697c2471e165fdc3d1df9caab3c1d2 + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + +.. |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%2Ffleet-lightgray.png?logo=github + :target: https://github.com/OCA/fleet/tree/17.0/fleet_vehicle_fuel_type_ethanol + :alt: OCA/fleet +.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png + :target: https://translation.odoo-community.org/projects/fleet-17-0/fleet-17-0-fleet_vehicle_fuel_type_ethanol + :alt: Translate me on Weblate +.. |badge5| image:: https://img.shields.io/badge/runboat-Try%20me-875A7B.png + :target: https://runboat.odoo-community.org/builds?repo=OCA/fleet&target_branch=17.0 + :alt: Try me on Runboat + +|badge1| |badge2| |badge3| |badge4| |badge5| + +This module extends the fleet management functionality. This adds +ethanol as another type of fuel to be used by a vehicle in the fleet. + +- Ethanol +- Flex (Gasoline/Ethanol) + +**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 to smash it by providing a detailed and welcomed +`feedback `_. + +Do not contact contributors directly about support or help with technical issues. + +Credits +======= + +Authors +------- + +* Escodoo + +Contributors +------------ + +- Marcel Savegnago +- Kaynnan Lemes +- Elheit Med Lamine + +Other credits +------------- + +The development of this module has been financially supported by: + +- Escodoo - https://www.escodoo.com.br + +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. + +.. |maintainer-elheit| image:: https://github.com/elheit.png?size=40px + :target: https://github.com/elheit + :alt: elheit + +Current `maintainer `__: + +|maintainer-elheit| + +This module is part of the `OCA/fleet `_ project on GitHub. + +You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute. diff --git a/fleet_vehicle_fuel_type_ethanol/__init__.py b/fleet_vehicle_fuel_type_ethanol/__init__.py new file mode 100644 index 00000000..0650744f --- /dev/null +++ b/fleet_vehicle_fuel_type_ethanol/__init__.py @@ -0,0 +1 @@ +from . import models diff --git a/fleet_vehicle_fuel_type_ethanol/__manifest__.py b/fleet_vehicle_fuel_type_ethanol/__manifest__.py new file mode 100644 index 00000000..1eff7af0 --- /dev/null +++ b/fleet_vehicle_fuel_type_ethanol/__manifest__.py @@ -0,0 +1,19 @@ +# Copyright 2021 - TODAY, Escodoo +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + +{ + "name": "Fleet Vehicle Fuel Type Ethanol", + "summary": """ + This module extends the fleet management functionality. This adds ethanol + as another type of fuel to be used by a vehicle in the fleet.""", + "version": "17.0.1.0.0", + "license": "AGPL-3", + "category": "Human Resources/Fleet", + "author": "Escodoo,Odoo Community Association (OCA)", + "maintainers": ["elheit"], + "images": ["static/description/banner.png"], + "website": "https://github.com/OCA/fleet", + "depends": [ + "fleet", + ], +} diff --git a/fleet_vehicle_fuel_type_ethanol/i18n/es.po b/fleet_vehicle_fuel_type_ethanol/i18n/es.po new file mode 100644 index 00000000..06c6c6cb --- /dev/null +++ b/fleet_vehicle_fuel_type_ethanol/i18n/es.po @@ -0,0 +1,37 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * fleet_vehicle_fuel_type_ethanol +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: 2023-08-03 21:10+0000\n" +"Last-Translator: Ivorra78 \n" +"Language-Team: none\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" +"X-Generator: Weblate 4.17\n" + +#. module: fleet_vehicle_fuel_type_ethanol +#: model:ir.model.fields.selection,name:fleet_vehicle_fuel_type_ethanol.selection__fleet_vehicle__fuel_type__ethanol +msgid "Ethanol" +msgstr "Etanol" + +#. module: fleet_vehicle_fuel_type_ethanol +#: model:ir.model.fields.selection,name:fleet_vehicle_fuel_type_ethanol.selection__fleet_vehicle__fuel_type__flex +msgid "Flex (Gasoline/Ethanol)" +msgstr "Flex (gasolina/etanol)" + +#. module: fleet_vehicle_fuel_type_ethanol +#: model:ir.model.fields,field_description:fleet_vehicle_fuel_type_ethanol.field_fleet_vehicle__fuel_type +msgid "Fuel Type" +msgstr "Tipo de combustible" + +#. module: fleet_vehicle_fuel_type_ethanol +#: model:ir.model,name:fleet_vehicle_fuel_type_ethanol.model_fleet_vehicle +msgid "Vehicle" +msgstr "Vehículo" diff --git a/fleet_vehicle_fuel_type_ethanol/i18n/fleet_vehicle_fuel_type_ethanol.pot b/fleet_vehicle_fuel_type_ethanol/i18n/fleet_vehicle_fuel_type_ethanol.pot new file mode 100644 index 00000000..a4599f4a --- /dev/null +++ b/fleet_vehicle_fuel_type_ethanol/i18n/fleet_vehicle_fuel_type_ethanol.pot @@ -0,0 +1,34 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * fleet_vehicle_fuel_type_ethanol +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.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: fleet_vehicle_fuel_type_ethanol +#: model:ir.model.fields.selection,name:fleet_vehicle_fuel_type_ethanol.selection__fleet_vehicle__fuel_type__ethanol +msgid "Ethanol" +msgstr "" + +#. module: fleet_vehicle_fuel_type_ethanol +#: model:ir.model.fields.selection,name:fleet_vehicle_fuel_type_ethanol.selection__fleet_vehicle__fuel_type__flex +msgid "Flex (Gasoline/Ethanol)" +msgstr "" + +#. module: fleet_vehicle_fuel_type_ethanol +#: model:ir.model.fields,field_description:fleet_vehicle_fuel_type_ethanol.field_fleet_vehicle__fuel_type +msgid "Fuel Type" +msgstr "" + +#. module: fleet_vehicle_fuel_type_ethanol +#: model:ir.model,name:fleet_vehicle_fuel_type_ethanol.model_fleet_vehicle +msgid "Vehicle" +msgstr "" diff --git a/fleet_vehicle_fuel_type_ethanol/i18n/it.po b/fleet_vehicle_fuel_type_ethanol/i18n/it.po new file mode 100644 index 00000000..ceacceac --- /dev/null +++ b/fleet_vehicle_fuel_type_ethanol/i18n/it.po @@ -0,0 +1,40 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * fleet_vehicle_fuel_type_ethanol +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 15.0\n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: 2023-03-30 14:26+0000\n" +"Last-Translator: mymage \n" +"Language-Team: none\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" +"X-Generator: Weblate 4.14.1\n" + +#. module: fleet_vehicle_fuel_type_ethanol +#: model:ir.model.fields.selection,name:fleet_vehicle_fuel_type_ethanol.selection__fleet_vehicle__fuel_type__ethanol +msgid "Ethanol" +msgstr "Etanolo" + +#. module: fleet_vehicle_fuel_type_ethanol +#: model:ir.model.fields.selection,name:fleet_vehicle_fuel_type_ethanol.selection__fleet_vehicle__fuel_type__flex +msgid "Flex (Gasoline/Ethanol)" +msgstr "Flessibile (Benzina/etanolo)" + +#. module: fleet_vehicle_fuel_type_ethanol +#: model:ir.model.fields,field_description:fleet_vehicle_fuel_type_ethanol.field_fleet_vehicle__fuel_type +msgid "Fuel Type" +msgstr "Tipo carburante" + +#. module: fleet_vehicle_fuel_type_ethanol +#: model:ir.model,name:fleet_vehicle_fuel_type_ethanol.model_fleet_vehicle +msgid "Vehicle" +msgstr "Veicolo" + +#~ msgid "Fuel Used by the vehicle" +#~ msgstr "Carburante utilizzato dal veicolo" diff --git a/fleet_vehicle_fuel_type_ethanol/i18n/pt_BR.po b/fleet_vehicle_fuel_type_ethanol/i18n/pt_BR.po new file mode 100644 index 00000000..4eb1b7b0 --- /dev/null +++ b/fleet_vehicle_fuel_type_ethanol/i18n/pt_BR.po @@ -0,0 +1,55 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * fleet_vehicle_fuel_type_ethanol +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 12.0\n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: 2021-04-27 19:59+0000\n" +"Last-Translator: Marcel Savegnago \n" +"Language-Team: none\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 4.3.2\n" + +#. module: fleet_vehicle_fuel_type_ethanol +#: model:ir.model.fields.selection,name:fleet_vehicle_fuel_type_ethanol.selection__fleet_vehicle__fuel_type__ethanol +msgid "Ethanol" +msgstr "Etanol" + +#. module: fleet_vehicle_fuel_type_ethanol +#: model:ir.model.fields.selection,name:fleet_vehicle_fuel_type_ethanol.selection__fleet_vehicle__fuel_type__flex +msgid "Flex (Gasoline/Ethanol)" +msgstr "Flex (Gasolina/Etanol)" + +#. module: fleet_vehicle_fuel_type_ethanol +#: model:ir.model.fields,field_description:fleet_vehicle_fuel_type_ethanol.field_fleet_vehicle__fuel_type +msgid "Fuel Type" +msgstr "Tipo de Combustível" + +#. module: fleet_vehicle_fuel_type_ethanol +#: model:ir.model,name:fleet_vehicle_fuel_type_ethanol.model_fleet_vehicle +msgid "Vehicle" +msgstr "Veículo" + +#~ msgid "Fuel Used by the vehicle" +#~ msgstr "Combustível Usado pelo veículo" + +#~ msgid "Diesel" +#~ msgstr "Diesel" + +#~ msgid "Electric" +#~ msgstr "Elétrico" + +#~ msgid "Gasoline" +#~ msgstr "Gasolina" + +#~ msgid "Hybrid" +#~ msgstr "Híbrido" + +#~ msgid "LPG" +#~ msgstr "GPL" diff --git a/fleet_vehicle_fuel_type_ethanol/i18n/sv.po b/fleet_vehicle_fuel_type_ethanol/i18n/sv.po new file mode 100644 index 00000000..c6f8ea27 --- /dev/null +++ b/fleet_vehicle_fuel_type_ethanol/i18n/sv.po @@ -0,0 +1,37 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * fleet_vehicle_fuel_type_ethanol +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: 2024-02-23 12:34+0000\n" +"Last-Translator: jakobkrabbe \n" +"Language-Team: none\n" +"Language: sv\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 4.17\n" + +#. module: fleet_vehicle_fuel_type_ethanol +#: model:ir.model.fields.selection,name:fleet_vehicle_fuel_type_ethanol.selection__fleet_vehicle__fuel_type__ethanol +msgid "Ethanol" +msgstr "Etanol" + +#. module: fleet_vehicle_fuel_type_ethanol +#: model:ir.model.fields.selection,name:fleet_vehicle_fuel_type_ethanol.selection__fleet_vehicle__fuel_type__flex +msgid "Flex (Gasoline/Ethanol)" +msgstr "E85 (Bensin/etanol)" + +#. module: fleet_vehicle_fuel_type_ethanol +#: model:ir.model.fields,field_description:fleet_vehicle_fuel_type_ethanol.field_fleet_vehicle__fuel_type +msgid "Fuel Type" +msgstr "Bränsletyp" + +#. module: fleet_vehicle_fuel_type_ethanol +#: model:ir.model,name:fleet_vehicle_fuel_type_ethanol.model_fleet_vehicle +msgid "Vehicle" +msgstr "Fordon" diff --git a/fleet_vehicle_fuel_type_ethanol/models/__init__.py b/fleet_vehicle_fuel_type_ethanol/models/__init__.py new file mode 100644 index 00000000..53bbf7bd --- /dev/null +++ b/fleet_vehicle_fuel_type_ethanol/models/__init__.py @@ -0,0 +1 @@ +from . import fleet_vehicle diff --git a/fleet_vehicle_fuel_type_ethanol/models/fleet_vehicle.py b/fleet_vehicle_fuel_type_ethanol/models/fleet_vehicle.py new file mode 100644 index 00000000..fd61c73e --- /dev/null +++ b/fleet_vehicle_fuel_type_ethanol/models/fleet_vehicle.py @@ -0,0 +1,15 @@ +# Copyright 2021 - TODAY, Marcel Savegnago +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + +from odoo import fields, models + + +class FleetVehicle(models.Model): + _inherit = "fleet.vehicle" + + fuel_type = fields.Selection( + selection_add=[ + ("ethanol", "Ethanol"), + ("flex", "Flex (Gasoline/Ethanol)"), + ] + ) diff --git a/fleet_vehicle_fuel_type_ethanol/pyproject.toml b/fleet_vehicle_fuel_type_ethanol/pyproject.toml new file mode 100644 index 00000000..4231d0cc --- /dev/null +++ b/fleet_vehicle_fuel_type_ethanol/pyproject.toml @@ -0,0 +1,3 @@ +[build-system] +requires = ["whool"] +build-backend = "whool.buildapi" diff --git a/fleet_vehicle_fuel_type_ethanol/readme/CONTRIBUTORS.md b/fleet_vehicle_fuel_type_ethanol/readme/CONTRIBUTORS.md new file mode 100644 index 00000000..be9e8b78 --- /dev/null +++ b/fleet_vehicle_fuel_type_ethanol/readme/CONTRIBUTORS.md @@ -0,0 +1,3 @@ +- Marcel Savegnago \<\> +- Kaynnan Lemes \<\> +- Elheit Med Lamine \<\> diff --git a/fleet_vehicle_fuel_type_ethanol/readme/CREDITS.md b/fleet_vehicle_fuel_type_ethanol/readme/CREDITS.md new file mode 100644 index 00000000..7bf0340a --- /dev/null +++ b/fleet_vehicle_fuel_type_ethanol/readme/CREDITS.md @@ -0,0 +1,3 @@ +The development of this module has been financially supported by: + +- Escodoo - diff --git a/fleet_vehicle_fuel_type_ethanol/readme/DESCRIPTION.md b/fleet_vehicle_fuel_type_ethanol/readme/DESCRIPTION.md new file mode 100644 index 00000000..afc46a2e --- /dev/null +++ b/fleet_vehicle_fuel_type_ethanol/readme/DESCRIPTION.md @@ -0,0 +1,5 @@ +This module extends the fleet management functionality. This adds +ethanol as another type of fuel to be used by a vehicle in the fleet. + +- Ethanol +- Flex (Gasoline/Ethanol) diff --git a/fleet_vehicle_fuel_type_ethanol/static/description/banner.png b/fleet_vehicle_fuel_type_ethanol/static/description/banner.png new file mode 100644 index 00000000..da4f6de2 Binary files /dev/null and b/fleet_vehicle_fuel_type_ethanol/static/description/banner.png differ diff --git a/fleet_vehicle_fuel_type_ethanol/static/description/icon.png b/fleet_vehicle_fuel_type_ethanol/static/description/icon.png new file mode 100644 index 00000000..3a0328b5 Binary files /dev/null and b/fleet_vehicle_fuel_type_ethanol/static/description/icon.png differ diff --git a/fleet_vehicle_fuel_type_ethanol/static/description/index.html b/fleet_vehicle_fuel_type_ethanol/static/description/index.html new file mode 100644 index 00000000..a171b859 --- /dev/null +++ b/fleet_vehicle_fuel_type_ethanol/static/description/index.html @@ -0,0 +1,440 @@ + + + + + +Fleet Vehicle Fuel Type Ethanol + + + +
+

Fleet Vehicle Fuel Type Ethanol

+ + +

Beta License: AGPL-3 OCA/fleet Translate me on Weblate Try me on Runboat

+

This module extends the fleet management functionality. This adds +ethanol as another type of fuel to be used by a vehicle in the fleet.

+
    +
  • Ethanol
  • +
  • Flex (Gasoline/Ethanol)
  • +
+

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 to smash it by providing a detailed and welcomed +feedback.

+

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

+
+
+

Credits

+
+

Authors

+
    +
  • Escodoo
  • +
+
+
+

Contributors

+ +
+
+

Other credits

+

The development of this module has been financially supported by:

+ +
+
+

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.

+

Current maintainer:

+

elheit

+

This module is part of the OCA/fleet project on GitHub.

+

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

+
+
+
+ + diff --git a/setup/.setuptools-odoo-make-default-ignore b/setup/.setuptools-odoo-make-default-ignore new file mode 100644 index 00000000..207e6153 --- /dev/null +++ b/setup/.setuptools-odoo-make-default-ignore @@ -0,0 +1,2 @@ +# addons listed in this file are ignored by +# setuptools-odoo-make-default (one addon per line) diff --git a/setup/README b/setup/README new file mode 100644 index 00000000..a63d633e --- /dev/null +++ b/setup/README @@ -0,0 +1,2 @@ +To learn more about this directory, please visit +https://pypi.python.org/pypi/setuptools-odoo diff --git a/setup/_metapackage/VERSION.txt b/setup/_metapackage/VERSION.txt new file mode 100644 index 00000000..f76341b7 --- /dev/null +++ b/setup/_metapackage/VERSION.txt @@ -0,0 +1 @@ +17.0.1.0 \ No newline at end of file diff --git a/setup/_metapackage/setup.py b/setup/_metapackage/setup.py new file mode 100644 index 00000000..3f6bde41 --- /dev/null +++ b/setup/_metapackage/setup.py @@ -0,0 +1,18 @@ +import setuptools + +with open('VERSION.txt', 'r') as f: + version = f.read().strip() + +setuptools.setup( + name="odoo-addons-oca-fleet", + description="Meta package for oca-fleet Odoo addons", + version=version, + install_requires=[ + 'odoo-addon-fleet_vehicle_fuel_type_ethanol>=17.0dev,<17.1dev', + ], + classifiers=[ + 'Programming Language :: Python', + 'Framework :: Odoo', + 'Framework :: Odoo :: 17.0', + ] +) diff --git a/setup/fleet_vehicle_fuel_type_ethanol/odoo/addons/fleet_vehicle_fuel_type_ethanol b/setup/fleet_vehicle_fuel_type_ethanol/odoo/addons/fleet_vehicle_fuel_type_ethanol new file mode 120000 index 00000000..ef203179 --- /dev/null +++ b/setup/fleet_vehicle_fuel_type_ethanol/odoo/addons/fleet_vehicle_fuel_type_ethanol @@ -0,0 +1 @@ +../../../../fleet_vehicle_fuel_type_ethanol \ No newline at end of file diff --git a/setup/fleet_vehicle_fuel_type_ethanol/setup.py b/setup/fleet_vehicle_fuel_type_ethanol/setup.py new file mode 100644 index 00000000..28c57bb6 --- /dev/null +++ b/setup/fleet_vehicle_fuel_type_ethanol/setup.py @@ -0,0 +1,6 @@ +import setuptools + +setuptools.setup( + setup_requires=['setuptools-odoo'], + odoo_addon=True, +)