-
-
Notifications
You must be signed in to change notification settings - Fork 672
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[MIG] hr_contract_currency: Migration to 17.0
- Loading branch information
1 parent
5e65f35
commit e4c3869
Showing
19 changed files
with
926 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 <https://github.com/OCA/hr/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 <https://github.com/OCA/hr/issues/new?body=module:%20hr_contract_currency%0Aversion:%2017.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. | ||
|
||
Credits | ||
======= | ||
|
||
Authors | ||
------- | ||
|
||
* Newlogic | ||
* CorporateHub | ||
|
||
Contributors | ||
------------ | ||
|
||
- `CorporateHub <https://corporatehub.eu/>`__ | ||
|
||
- Alexey Pelykh <[email protected]> | ||
|
||
- Andrea Stirpe <[email protected]> | ||
- Nattapong W. <[email protected]> | ||
- `Newlogic <https://newlogic.com/odoo>`__ | ||
|
||
- Baptiste P. <[email protected]> | ||
|
||
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 <https://github.com/OCA/hr/tree/17.0/hr_contract_currency>`_ project on GitHub. | ||
|
||
You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). | ||
|
||
from . import models |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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"], | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 <[email protected]>\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" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 <[email protected]>\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" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 <[email protected]>\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)" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 <[email protected]>\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" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 <[email protected]>\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" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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. <[email protected]>\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 "สัญญาการจ้างงาน" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). | ||
|
||
from . import hr_contract |
Oops, something went wrong.