diff --git a/hr_contract_currency/README.rst b/hr_contract_currency/README.rst new file mode 100644 index 00000000000..3cabba3e289 --- /dev/null +++ b/hr_contract_currency/README.rst @@ -0,0 +1,96 @@ +==================== +HR Contract Currency +==================== + +.. + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! This file is generated by oca-gen-addon-readme !! + !! changes will be overwritten. !! + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! source digest: sha256:8738d13debbf406703a0039f49a4a45d3e9c5a2fad036e02a59543c32cf1b85e + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + +.. |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%2Fhr-lightgray.png?logo=github + :target: https://github.com/OCA/hr/tree/17.0/hr_contract_currency + :alt: OCA/hr +.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png + :target: https://translation.odoo-community.org/projects/hr-17-0/hr-17-0-hr_contract_currency + :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/hr&target_branch=17.0 + :alt: Try me on Runboat + +|badge1| |badge2| |badge3| |badge4| |badge5| + +This module allows to use non-default currency for employee's contract. + +**Warning** + +When using this module with Odoo Enterprise. Use a chart of account with +the right currency. Otherwise, Odoo will post the payslip with the wrong +currency or throw the following error : + +:: + + The account selected on your journal entry forces to provide a secondary currency. + You should remove the secondary currency on the account. + +**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 +------- + +* Newlogic +* CorporateHub + +Contributors +------------ + +- `CorporateHub `__ + + - Alexey Pelykh + +- Andrea Stirpe +- Nattapong W. +- `Newlogic `__ + + - Baptiste P. + +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/hr `_ project on GitHub. + +You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute. diff --git a/hr_contract_currency/__init__.py b/hr_contract_currency/__init__.py new file mode 100644 index 00000000000..31660d6a965 --- /dev/null +++ b/hr_contract_currency/__init__.py @@ -0,0 +1,3 @@ +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). + +from . import models diff --git a/hr_contract_currency/__manifest__.py b/hr_contract_currency/__manifest__.py new file mode 100644 index 00000000000..1c897fea829 --- /dev/null +++ b/hr_contract_currency/__manifest__.py @@ -0,0 +1,17 @@ +# Copyright 2018 Brainbean Apps (https://brainbeanapps.com) +# Copyright 2020 CorporateHub (https://corporatehub.eu) +# Copyright 2024 Newlogic (https://newlogic.com) +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). + +{ + "name": "HR Contract Currency", + "version": "17.0.1.0.0", + "category": "Human Resources", + "website": "https://github.com/OCA/hr", + "author": "Newlogic, " "CorporateHub, " "Odoo Community Association (OCA)", + "license": "AGPL-3", + "installable": True, + "summary": "Employee's contract currency", + "depends": ["hr_contract"], + "data": ["views/hr_contract.xml"], +} diff --git a/hr_contract_currency/i18n/de.po b/hr_contract_currency/i18n/de.po new file mode 100644 index 00000000000..42e85751dab --- /dev/null +++ b/hr_contract_currency/i18n/de.po @@ -0,0 +1,45 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * hr_contract_currency +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: 2022-05-11 13:05+0000\n" +"Last-Translator: Maria Sparenberg \n" +"Language-Team: none\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 4.3.2\n" + +#. module: hr_contract_currency +#: model:ir.model.fields,field_description:hr_contract_currency.field_hr_contract__currency_id +msgid "Currency" +msgstr "Währung" + +#. module: hr_contract_currency +#: model:ir.model.fields,field_description:hr_contract_currency.field_hr_contract__display_name +msgid "Display Name" +msgstr "Anzeigename" + +#. module: hr_contract_currency +#: model:ir.model,name:hr_contract_currency.model_hr_contract +msgid "Employee Contract" +msgstr "" + +#. module: hr_contract_currency +#: model:ir.model.fields,field_description:hr_contract_currency.field_hr_contract__id +msgid "ID" +msgstr "ID" + +#. module: hr_contract_currency +#: model:ir.model.fields,field_description:hr_contract_currency.field_hr_contract____last_update +msgid "Last Modified on" +msgstr "Zuletzt geändert am" + +#~ msgid "Contract" +#~ msgstr "Vertrag" diff --git a/hr_contract_currency/i18n/es.po b/hr_contract_currency/i18n/es.po new file mode 100644 index 00000000000..131645cda29 --- /dev/null +++ b/hr_contract_currency/i18n/es.po @@ -0,0 +1,42 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * hr_contract_currency +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: 2024-02-18 21:33+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: hr_contract_currency +#: model:ir.model.fields,field_description:hr_contract_currency.field_hr_contract__currency_id +msgid "Currency" +msgstr "Divisa" + +#. module: hr_contract_currency +#: model:ir.model.fields,field_description:hr_contract_currency.field_hr_contract__display_name +msgid "Display Name" +msgstr "Mostrar Nombre" + +#. module: hr_contract_currency +#: model:ir.model,name:hr_contract_currency.model_hr_contract +msgid "Employee Contract" +msgstr "Contrato de Empleado" + +#. module: hr_contract_currency +#: model:ir.model.fields,field_description:hr_contract_currency.field_hr_contract__id +msgid "ID" +msgstr "ID" + +#. module: hr_contract_currency +#: model:ir.model.fields,field_description:hr_contract_currency.field_hr_contract____last_update +msgid "Last Modified on" +msgstr "Última Modificación el" diff --git a/hr_contract_currency/i18n/fr.po b/hr_contract_currency/i18n/fr.po new file mode 100644 index 00000000000..8bd2b2ed419 --- /dev/null +++ b/hr_contract_currency/i18n/fr.po @@ -0,0 +1,46 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * hr_contract_currency +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 12.0\n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: 2019-05-23 20:19+0000\n" +"Last-Translator: Kévin Allard \n" +"Language-Team: none\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" +"X-Generator: Weblate 3.6.1\n" + +#. module: hr_contract_currency +#: model:ir.model.fields,field_description:hr_contract_currency.field_hr_contract__currency_id +msgid "Currency" +msgstr "Devise" + +#. module: hr_contract_currency +#: model:ir.model.fields,field_description:hr_contract_currency.field_hr_contract__display_name +msgid "Display Name" +msgstr "" + +#. module: hr_contract_currency +#: model:ir.model,name:hr_contract_currency.model_hr_contract +msgid "Employee Contract" +msgstr "" + +#. module: hr_contract_currency +#: model:ir.model.fields,field_description:hr_contract_currency.field_hr_contract__id +msgid "ID" +msgstr "" + +#. module: hr_contract_currency +#: model:ir.model.fields,field_description:hr_contract_currency.field_hr_contract____last_update +msgid "Last Modified on" +msgstr "" + +#, fuzzy +#~ msgid "Contract" +#~ msgstr "Contrat de l'employé(e)" diff --git a/hr_contract_currency/i18n/hr.po b/hr_contract_currency/i18n/hr.po new file mode 100644 index 00000000000..5f2d008b3ff --- /dev/null +++ b/hr_contract_currency/i18n/hr.po @@ -0,0 +1,43 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * hr_contract_currency +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: 2022-08-22 21:07+0000\n" +"Last-Translator: Bole \n" +"Language-Team: none\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 4.3.2\n" + +#. module: hr_contract_currency +#: model:ir.model.fields,field_description:hr_contract_currency.field_hr_contract__currency_id +msgid "Currency" +msgstr "Valuta" + +#. module: hr_contract_currency +#: model:ir.model.fields,field_description:hr_contract_currency.field_hr_contract__display_name +msgid "Display Name" +msgstr "Prikazani naziv" + +#. module: hr_contract_currency +#: model:ir.model,name:hr_contract_currency.model_hr_contract +msgid "Employee Contract" +msgstr "Ugovor djelatnika" + +#. module: hr_contract_currency +#: model:ir.model.fields,field_description:hr_contract_currency.field_hr_contract__id +msgid "ID" +msgstr "ID" + +#. module: hr_contract_currency +#: model:ir.model.fields,field_description:hr_contract_currency.field_hr_contract____last_update +msgid "Last Modified on" +msgstr "Zadnje modificirano" diff --git a/hr_contract_currency/i18n/it.po b/hr_contract_currency/i18n/it.po new file mode 100644 index 00000000000..d2f132ba6c5 --- /dev/null +++ b/hr_contract_currency/i18n/it.po @@ -0,0 +1,42 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * hr_contract_currency +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: 2023-05-24 10:08+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.17\n" + +#. module: hr_contract_currency +#: model:ir.model.fields,field_description:hr_contract_currency.field_hr_contract__currency_id +msgid "Currency" +msgstr "Valuta" + +#. module: hr_contract_currency +#: model:ir.model.fields,field_description:hr_contract_currency.field_hr_contract__display_name +msgid "Display Name" +msgstr "Nome visualizzato" + +#. module: hr_contract_currency +#: model:ir.model,name:hr_contract_currency.model_hr_contract +msgid "Employee Contract" +msgstr "Contratto dipendente" + +#. module: hr_contract_currency +#: model:ir.model.fields,field_description:hr_contract_currency.field_hr_contract__id +msgid "ID" +msgstr "ID" + +#. module: hr_contract_currency +#: model:ir.model.fields,field_description:hr_contract_currency.field_hr_contract____last_update +msgid "Last Modified on" +msgstr "Ultima modifica il" diff --git a/hr_contract_currency/i18n/th.po b/hr_contract_currency/i18n/th.po new file mode 100644 index 00000000000..6fe1f9710a9 --- /dev/null +++ b/hr_contract_currency/i18n/th.po @@ -0,0 +1,28 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * hr_contract_currency +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0+e\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-05-30 02:35+0000\n" +"PO-Revision-Date: 2024-05-30 09:40+0700\n" +"Last-Translator: Baptiste P. \n" +"Language-Team: \n" +"Language: th\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: Poedit 3.4.4\n" + +#. module: hr_contract_currency +#: model:ir.model.fields,field_description:hr_contract_currency.field_hr_contract__currency_id +msgid "Currency" +msgstr "สกุลเงิน" + +#. module: hr_contract_currency +#: model:ir.model,name:hr_contract_currency.model_hr_contract +msgid "Employee Contract" +msgstr "สัญญาการจ้างงาน" diff --git a/hr_contract_currency/models/__init__.py b/hr_contract_currency/models/__init__.py new file mode 100644 index 00000000000..6617b325c76 --- /dev/null +++ b/hr_contract_currency/models/__init__.py @@ -0,0 +1,3 @@ +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). + +from . import hr_contract diff --git a/hr_contract_currency/models/hr_contract.py b/hr_contract_currency/models/hr_contract.py new file mode 100644 index 00000000000..3d9c19ca5a0 --- /dev/null +++ b/hr_contract_currency/models/hr_contract.py @@ -0,0 +1,28 @@ +# Copyright 2018 Brainbean Apps (https://brainbeanapps.com) +# Copyright 2020 Onestein () +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + +from odoo import api, fields, models + + +class HrContract(models.Model): + _inherit = "hr.contract" + + currency_id = fields.Many2one( + "res.currency", + related=False, + readonly=False, + required=True, + default=lambda self: self._get_default_currency_id(), + tracking=True, + ) + + def _get_default_currency_id(self): + return self.company_id.currency_id or self.env.company.currency_id + + @api.model + def create(self, vals): + if vals.get("company_id") and not vals.get("currency_id"): + company = self.env["res.company"].browse(vals.get("company_id")) + vals["currency_id"] = company.currency_id.id + return super().create(vals) diff --git a/hr_contract_currency/pyproject.toml b/hr_contract_currency/pyproject.toml new file mode 100644 index 00000000000..4231d0cccb3 --- /dev/null +++ b/hr_contract_currency/pyproject.toml @@ -0,0 +1,3 @@ +[build-system] +requires = ["whool"] +build-backend = "whool.buildapi" diff --git a/hr_contract_currency/readme/CONTRIBUTORS.md b/hr_contract_currency/readme/CONTRIBUTORS.md new file mode 100644 index 00000000000..a69735fcba4 --- /dev/null +++ b/hr_contract_currency/readme/CONTRIBUTORS.md @@ -0,0 +1,6 @@ +- [CorporateHub](https://corporatehub.eu/) + - Alexey Pelykh \<\> +- Andrea Stirpe \<\> +- Nattapong W. \<\> +- [Newlogic](https://newlogic.com/odoo) + - Baptiste P. \<\> diff --git a/hr_contract_currency/readme/DESCRIPTION.md b/hr_contract_currency/readme/DESCRIPTION.md new file mode 100644 index 00000000000..8a5a368a5f8 --- /dev/null +++ b/hr_contract_currency/readme/DESCRIPTION.md @@ -0,0 +1,12 @@ +This module allows to use non-default currency for employee's contract. + +**Warning** + +When using this module with Odoo Enterprise. +Use a chart of account with the right currency. +Otherwise, Odoo will post the payslip with the wrong currency or throw the following error : +``` + The account selected on your journal entry forces to provide a secondary currency. + You should remove the secondary currency on the account. +``` + diff --git a/hr_contract_currency/static/description/icon.png b/hr_contract_currency/static/description/icon.png new file mode 100644 index 00000000000..3a0328b516c Binary files /dev/null and b/hr_contract_currency/static/description/icon.png differ diff --git a/hr_contract_currency/static/description/index.html b/hr_contract_currency/static/description/index.html new file mode 100644 index 00000000000..c0fa0eac360 --- /dev/null +++ b/hr_contract_currency/static/description/index.html @@ -0,0 +1,441 @@ + + + + + +HR Contract Currency + + + +
+

HR Contract Currency

+ + +

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

+

This module allows to use non-default currency for employee’s contract.

+

Warning

+

When using this module with Odoo Enterprise. Use a chart of account with +the right currency. Otherwise, Odoo will post the payslip with the wrong +currency or throw the following error :

+
+The account selected on your journal entry forces to provide a secondary currency.
+You should remove the secondary currency on the account.
+
+

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

+
    +
  • Newlogic
  • +
  • CorporateHub
  • +
+
+
+

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/hr project on GitHub.

+

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

+
+
+
+ + diff --git a/hr_contract_currency/tests/__init__.py b/hr_contract_currency/tests/__init__.py new file mode 100644 index 00000000000..d0c412b7f33 --- /dev/null +++ b/hr_contract_currency/tests/__init__.py @@ -0,0 +1,3 @@ +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html). + +from . import test_hr_contract_currency diff --git a/hr_contract_currency/tests/test_hr_contract_currency.py b/hr_contract_currency/tests/test_hr_contract_currency.py new file mode 100644 index 00000000000..51888cd34a5 --- /dev/null +++ b/hr_contract_currency/tests/test_hr_contract_currency.py @@ -0,0 +1,43 @@ +# Copyright 2018 Brainbean Apps (https://brainbeanapps.com) +# Copyright 2020 Onestein () +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html). + +from odoo import fields +from odoo.tests import common + + +class TestHrContractCurrency(common.TransactionCase): + def setUp(self): + super().setUp() + + self.today = fields.Date.today() + self.Contract = self.env["hr.contract"] + + def test_1(self): + contract = self.Contract.create( + { + "name": "Contract #1", + "wage": 5000.0, + "date_start": self.today, + "date_end": self.today, + } + ) + + self.assertEqual(contract.currency_id, self.env.company.currency_id) + + def test_2(self): + my_company = self.env["res.company"].create( + {"name": "My Company", "currency_id": self.env.ref("base.CHF").id} + ) + contract = self.Contract.create( + { + "name": "Contract #2", + "wage": 1000.0, + "date_start": self.today, + "date_end": self.today, + "company_id": my_company.id, + } + ) + + self.assertEqual(contract.currency_id, self.env.ref("base.CHF")) + self.assertNotEqual(contract.currency_id, self.env.company.currency_id) diff --git a/hr_contract_currency/views/hr_contract.xml b/hr_contract_currency/views/hr_contract.xml new file mode 100644 index 00000000000..c3025132331 --- /dev/null +++ b/hr_contract_currency/views/hr_contract.xml @@ -0,0 +1,25 @@ + + + + + hr.contract + + + + + + + + + hr.contract + + + + + + + +