diff --git a/account_invoice_fiscal_position_update/README.rst b/account_invoice_fiscal_position_update/README.rst new file mode 100644 index 00000000000..1274fa30404 --- /dev/null +++ b/account_invoice_fiscal_position_update/README.rst @@ -0,0 +1,97 @@ +============================== +Invoice Fiscal Position Update +============================== + +.. !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! 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--invoicing-lightgray.png?logo=github + :target: https://github.com/OCA/account-invoicing/tree/15.0/account_invoice_fiscal_position_update + :alt: OCA/account-invoicing +.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png + :target: https://translation.odoo-community.org/projects/account-invoicing-15-0/account-invoicing-15-0-account_invoice_fiscal_position_update + :alt: Translate me on Weblate +.. |badge5| image:: https://img.shields.io/badge/runbot-Try%20me-875A7B.png + :target: https://runbot.odoo-community.org/runbot/95/15.0 + :alt: Try me on Runbot + +|badge1| |badge2| |badge3| |badge4| |badge5| + +With this module, when a user changes the fiscal position of an invoice, the +taxes and the accounts on all the invoice lines which have a product are +automatically updated. The invoice lines without a product are not updated and +a warning is displayed to the user in this case. + +**Table of contents** + +.. contents:: + :local: + +Usage +===== + +Update fiscal position or the partner on the invoice. This will automatically +update the taxes and accounts. + +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 +~~~~~~~ + +* Julius Network Solutions +* Akretion + +Contributors +~~~~~~~~~~~~ + +* Mathieu Vatel (Julius Network Solutions) +* Alexis de Lattre +* Mourad EL HADJ MIMOUNE +* Roel Adriaans +* `Tecnativa `_: + + * Ernesto Tejeda + +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-alexis-via| image:: https://github.com/alexis-via.png?size=40px + :target: https://github.com/alexis-via + :alt: alexis-via + +Current `maintainer `__: + +|maintainer-alexis-via| + +This module is part of the `OCA/account-invoicing `_ project on GitHub. + +You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute. diff --git a/account_invoice_fiscal_position_update/__init__.py b/account_invoice_fiscal_position_update/__init__.py new file mode 100644 index 00000000000..0650744f6bc --- /dev/null +++ b/account_invoice_fiscal_position_update/__init__.py @@ -0,0 +1 @@ +from . import models diff --git a/account_invoice_fiscal_position_update/__manifest__.py b/account_invoice_fiscal_position_update/__manifest__.py new file mode 100644 index 00000000000..c859ffca196 --- /dev/null +++ b/account_invoice_fiscal_position_update/__manifest__.py @@ -0,0 +1,22 @@ +# Copyright 2011-2020 Julius Network Solutions SARL +# Copyright 2014-2020 Akretion France (http://www.akretion.com/) +# @author: Alexis de Lattre +# Copyright 2018-2020 Roel Adriaans +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + + +{ + "name": "Invoice Fiscal Position Update", + "version": "16.0.1.0.0", + "category": "Accounting", + "license": "AGPL-3", + "summary": "Changing the fiscal position of an invoice will auto-update " + "invoice lines", + "website": "https://github.com/OCA/account-invoicing", + "author": "Julius Network Solutions," + "Akretion," + "Odoo Community Association (OCA)", + "maintainers": ["alexis-via"], + "depends": ["account"], + "installable": True, +} diff --git a/account_invoice_fiscal_position_update/i18n/account_invoice_fiscal_position_update.pot b/account_invoice_fiscal_position_update/i18n/account_invoice_fiscal_position_update.pot new file mode 100644 index 00000000000..0a84c81ce77 --- /dev/null +++ b/account_invoice_fiscal_position_update/i18n/account_invoice_fiscal_position_update.pot @@ -0,0 +1,43 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_fiscal_position_update +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 15.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_invoice_fiscal_position_update +#: model:ir.model,name:account_invoice_fiscal_position_update.model_account_move +msgid "Journal Entry" +msgstr "" + +#. module: account_invoice_fiscal_position_update +#: code:addons/account_invoice_fiscal_position_update/models/account_move.py:0 +#, python-format +msgid "" +"The following invoice lines were not updated to the new Fiscal Position because they don't have a Product:\n" +" - %s\n" +"You should update the Account and the Taxes of these invoice lines manually." +msgstr "" + +#. module: account_invoice_fiscal_position_update +#: code:addons/account_invoice_fiscal_position_update/models/account_move.py:0 +#, python-format +msgid "" +"The invoice lines were not updated to the new Fiscal Position because they " +"don't have products. You should update the Account and the Taxes of each " +"invoice line manually." +msgstr "" + +#. module: account_invoice_fiscal_position_update +#: code:addons/account_invoice_fiscal_position_update/models/account_move.py:0 +#, python-format +msgid "Warning" +msgstr "" diff --git a/account_invoice_fiscal_position_update/i18n/ar.po b/account_invoice_fiscal_position_update/i18n/ar.po new file mode 100644 index 00000000000..f8830d9fbea --- /dev/null +++ b/account_invoice_fiscal_position_update/i18n/ar.po @@ -0,0 +1,52 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_fiscal_position_update +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-04-29 02:39+0000\n" +"PO-Revision-Date: 2017-04-29 02:39+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Arabic (https://www.transifex.com/oca/teams/23907/ar/)\n" +"Language: ar\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " +"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" + +#. module: account_invoice_fiscal_position_update +#: model:ir.model,name:account_invoice_fiscal_position_update.model_account_move +msgid "Journal Entries" +msgstr "" + +#. module: account_invoice_fiscal_position_update +#: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:0 +#, python-format +msgid "" +"The following invoice lines were not updated to the new Fiscal Position " +"because they don't have a Product: - %s You should update the Account and " +"the Taxes of these invoice lines manually." +msgstr "" + +#. module: account_invoice_fiscal_position_update +#: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:0 +#, python-format +msgid "" +"The invoice lines were not updated to the new Fiscal Position because they " +"don't have products. You should update the Account and the Taxes of each " +"invoice line manually." +msgstr "" + +#. module: account_invoice_fiscal_position_update +#: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:0 +#, python-format +msgid "Warning" +msgstr "" + +#~ msgid "Invoice" +#~ msgstr "فاتورة" diff --git a/account_invoice_fiscal_position_update/i18n/bg.po b/account_invoice_fiscal_position_update/i18n/bg.po new file mode 100644 index 00000000000..54db76a6567 --- /dev/null +++ b/account_invoice_fiscal_position_update/i18n/bg.po @@ -0,0 +1,51 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_fiscal_position_update +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-04-29 02:39+0000\n" +"PO-Revision-Date: 2017-04-29 02:39+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Bulgarian (https://www.transifex.com/oca/teams/23907/bg/)\n" +"Language: bg\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_invoice_fiscal_position_update +#: model:ir.model,name:account_invoice_fiscal_position_update.model_account_move +msgid "Journal Entries" +msgstr "" + +#. module: account_invoice_fiscal_position_update +#: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:0 +#, python-format +msgid "" +"The following invoice lines were not updated to the new Fiscal Position " +"because they don't have a Product: - %s You should update the Account and " +"the Taxes of these invoice lines manually." +msgstr "" + +#. module: account_invoice_fiscal_position_update +#: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:0 +#, python-format +msgid "" +"The invoice lines were not updated to the new Fiscal Position because they " +"don't have products. You should update the Account and the Taxes of each " +"invoice line manually." +msgstr "" + +#. module: account_invoice_fiscal_position_update +#: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:0 +#, python-format +msgid "Warning" +msgstr "" + +#~ msgid "Invoice" +#~ msgstr "Фактура" diff --git a/account_invoice_fiscal_position_update/i18n/bs.po b/account_invoice_fiscal_position_update/i18n/bs.po new file mode 100644 index 00000000000..e4a20ed8332 --- /dev/null +++ b/account_invoice_fiscal_position_update/i18n/bs.po @@ -0,0 +1,52 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_fiscal_position_update +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-04-29 02:39+0000\n" +"PO-Revision-Date: 2017-04-29 02:39+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Bosnian (https://www.transifex.com/oca/teams/23907/bs/)\n" +"Language: bs\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_invoice_fiscal_position_update +#: model:ir.model,name:account_invoice_fiscal_position_update.model_account_move +msgid "Journal Entries" +msgstr "" + +#. module: account_invoice_fiscal_position_update +#: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:0 +#, python-format +msgid "" +"The following invoice lines were not updated to the new Fiscal Position " +"because they don't have a Product: - %s You should update the Account and " +"the Taxes of these invoice lines manually." +msgstr "" + +#. module: account_invoice_fiscal_position_update +#: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:0 +#, python-format +msgid "" +"The invoice lines were not updated to the new Fiscal Position because they " +"don't have products. You should update the Account and the Taxes of each " +"invoice line manually." +msgstr "" + +#. module: account_invoice_fiscal_position_update +#: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:0 +#, python-format +msgid "Warning" +msgstr "" + +#~ msgid "Invoice" +#~ msgstr "Faktura" diff --git a/account_invoice_fiscal_position_update/i18n/ca.po b/account_invoice_fiscal_position_update/i18n/ca.po new file mode 100644 index 00000000000..0a67de6d67d --- /dev/null +++ b/account_invoice_fiscal_position_update/i18n/ca.po @@ -0,0 +1,51 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_fiscal_position_update +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-04-29 02:39+0000\n" +"PO-Revision-Date: 2017-04-29 02:39+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Catalan (https://www.transifex.com/oca/teams/23907/ca/)\n" +"Language: ca\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_invoice_fiscal_position_update +#: model:ir.model,name:account_invoice_fiscal_position_update.model_account_move +msgid "Journal Entries" +msgstr "" + +#. module: account_invoice_fiscal_position_update +#: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:0 +#, python-format +msgid "" +"The following invoice lines were not updated to the new Fiscal Position " +"because they don't have a Product: - %s You should update the Account and " +"the Taxes of these invoice lines manually." +msgstr "" + +#. module: account_invoice_fiscal_position_update +#: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:0 +#, python-format +msgid "" +"The invoice lines were not updated to the new Fiscal Position because they " +"don't have products. You should update the Account and the Taxes of each " +"invoice line manually." +msgstr "" + +#. module: account_invoice_fiscal_position_update +#: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:0 +#, python-format +msgid "Warning" +msgstr "" + +#~ msgid "Invoice" +#~ msgstr "Factura" diff --git a/account_invoice_fiscal_position_update/i18n/cs.po b/account_invoice_fiscal_position_update/i18n/cs.po new file mode 100644 index 00000000000..e1a9e35b2e5 --- /dev/null +++ b/account_invoice_fiscal_position_update/i18n/cs.po @@ -0,0 +1,51 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_fiscal_position_update +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-04-29 02:39+0000\n" +"PO-Revision-Date: 2017-04-29 02:39+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Czech (https://www.transifex.com/oca/teams/23907/cs/)\n" +"Language: cs\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_invoice_fiscal_position_update +#: model:ir.model,name:account_invoice_fiscal_position_update.model_account_move +msgid "Journal Entries" +msgstr "" + +#. module: account_invoice_fiscal_position_update +#: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:0 +#, python-format +msgid "" +"The following invoice lines were not updated to the new Fiscal Position " +"because they don't have a Product: - %s You should update the Account and " +"the Taxes of these invoice lines manually." +msgstr "" + +#. module: account_invoice_fiscal_position_update +#: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:0 +#, python-format +msgid "" +"The invoice lines were not updated to the new Fiscal Position because they " +"don't have products. You should update the Account and the Taxes of each " +"invoice line manually." +msgstr "" + +#. module: account_invoice_fiscal_position_update +#: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:0 +#, python-format +msgid "Warning" +msgstr "" + +#~ msgid "Invoice" +#~ msgstr "Faktura" diff --git a/account_invoice_fiscal_position_update/i18n/de.po b/account_invoice_fiscal_position_update/i18n/de.po new file mode 100644 index 00000000000..98231886f52 --- /dev/null +++ b/account_invoice_fiscal_position_update/i18n/de.po @@ -0,0 +1,60 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_fiscal_position_update +# +# Translators: +# Niki Waibel , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-04-29 02:39+0000\n" +"PO-Revision-Date: 2019-07-17 12:43+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.7.1\n" + +#. module: account_invoice_fiscal_position_update +#: model:ir.model,name:account_invoice_fiscal_position_update.model_account_move +msgid "Journal Entries" +msgstr "" + +#. module: account_invoice_fiscal_position_update +#: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:0 +#, python-format +msgid "" +"The following invoice lines were not updated to the new Fiscal Position " +"because they don't have a Product: - %s You should update the Account and " +"the Taxes of these invoice lines manually." +msgstr "" +"Die folgenden Rechnungspositionen wurden nicht auf die neue Steuerzuordnung " +"aktualisiert, da sie keine Produkte enthalten: \n" +"- %s\n" +"Sie müssen Konto und Steuern in diesen Positionen ggf. händisch anpassen." + +#. module: account_invoice_fiscal_position_update +#: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:0 +#, python-format +msgid "" +"The invoice lines were not updated to the new Fiscal Position because they " +"don't have products. You should update the Account and the Taxes of each " +"invoice line manually." +msgstr "" +"Die Rechnungspositionen wurden nicht auf die neue Steuerzuordnung " +"aktualisiert, da sie keine Produkte enthalten.\n" +"Sie müssen Konto und Steuern dieser Rechnungspositionen ggf. händisch " +"aktualisieren." + +#. module: account_invoice_fiscal_position_update +#: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:0 +#, python-format +msgid "Warning" +msgstr "Warnung" + +#~ msgid "Invoice" +#~ msgstr "Rechnung" diff --git a/account_invoice_fiscal_position_update/i18n/el_GR.po b/account_invoice_fiscal_position_update/i18n/el_GR.po new file mode 100644 index 00000000000..450a26c98c4 --- /dev/null +++ b/account_invoice_fiscal_position_update/i18n/el_GR.po @@ -0,0 +1,52 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_fiscal_position_update +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-04-29 02:39+0000\n" +"PO-Revision-Date: 2017-04-29 02:39+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_invoice_fiscal_position_update +#: model:ir.model,name:account_invoice_fiscal_position_update.model_account_move +msgid "Journal Entries" +msgstr "" + +#. module: account_invoice_fiscal_position_update +#: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:0 +#, python-format +msgid "" +"The following invoice lines were not updated to the new Fiscal Position " +"because they don't have a Product: - %s You should update the Account and " +"the Taxes of these invoice lines manually." +msgstr "" + +#. module: account_invoice_fiscal_position_update +#: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:0 +#, python-format +msgid "" +"The invoice lines were not updated to the new Fiscal Position because they " +"don't have products. You should update the Account and the Taxes of each " +"invoice line manually." +msgstr "" + +#. module: account_invoice_fiscal_position_update +#: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:0 +#, python-format +msgid "Warning" +msgstr "" + +#~ msgid "Invoice" +#~ msgstr "Τιμολόγιο" diff --git a/account_invoice_fiscal_position_update/i18n/en_GB.po b/account_invoice_fiscal_position_update/i18n/en_GB.po new file mode 100644 index 00000000000..d89d384ca06 --- /dev/null +++ b/account_invoice_fiscal_position_update/i18n/en_GB.po @@ -0,0 +1,52 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_fiscal_position_update +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-04-29 02:39+0000\n" +"PO-Revision-Date: 2017-04-29 02:39+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: English (United Kingdom) (https://www.transifex.com/oca/" +"teams/23907/en_GB/)\n" +"Language: en_GB\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_invoice_fiscal_position_update +#: model:ir.model,name:account_invoice_fiscal_position_update.model_account_move +msgid "Journal Entries" +msgstr "" + +#. module: account_invoice_fiscal_position_update +#: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:0 +#, python-format +msgid "" +"The following invoice lines were not updated to the new Fiscal Position " +"because they don't have a Product: - %s You should update the Account and " +"the Taxes of these invoice lines manually." +msgstr "" + +#. module: account_invoice_fiscal_position_update +#: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:0 +#, python-format +msgid "" +"The invoice lines were not updated to the new Fiscal Position because they " +"don't have products. You should update the Account and the Taxes of each " +"invoice line manually." +msgstr "" + +#. module: account_invoice_fiscal_position_update +#: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:0 +#, python-format +msgid "Warning" +msgstr "" + +#~ msgid "Invoice" +#~ msgstr "Invoice" diff --git a/account_invoice_fiscal_position_update/i18n/es.po b/account_invoice_fiscal_position_update/i18n/es.po new file mode 100644 index 00000000000..bee0c241708 --- /dev/null +++ b/account_invoice_fiscal_position_update/i18n/es.po @@ -0,0 +1,58 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_fiscal_position_update +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-11-23 13:51+0000\n" +"PO-Revision-Date: 2021-03-10 10:46+0000\n" +"Last-Translator: Ana Suárez \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" +"X-Generator: Weblate 4.3.2\n" + +#. module: account_invoice_fiscal_position_update +#: model:ir.model,name:account_invoice_fiscal_position_update.model_account_move +msgid "Journal Entries" +msgstr "Asientos Contables" + +#. module: account_invoice_fiscal_position_update +#: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:0 +#, python-format +msgid "" +"The following invoice lines were not updated to the new Fiscal Position " +"because they don't have a Product: - %s You should update the Account and " +"the Taxes of these invoice lines manually." +msgstr "" +"Las líneas de factura no se actualizaron a la nueva posición fiscal porque " +"no tienen producto asociado. -%s Debería actualizar las cuentas y los " +"impuestos de cada línea de factura manualmente." + +#. module: account_invoice_fiscal_position_update +#: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:0 +#, python-format +msgid "" +"The invoice lines were not updated to the new Fiscal Position because they " +"don't have products. You should update the Account and the Taxes of each " +"invoice line manually." +msgstr "" +"Las líneas de factura no se actualizaron a la nueva posición fiscal porque " +"no tienen producto asociado. Debería actualizar las cuentas y los impuestos " +"de cada línea de factura manualmente." + +#. module: account_invoice_fiscal_position_update +#: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:0 +#, python-format +msgid "Warning" +msgstr "Aviso" + +#~ msgid "Invoice" +#~ msgstr "Factura" diff --git a/account_invoice_fiscal_position_update/i18n/es_CR.po b/account_invoice_fiscal_position_update/i18n/es_CR.po new file mode 100644 index 00000000000..11715c00a6b --- /dev/null +++ b/account_invoice_fiscal_position_update/i18n/es_CR.po @@ -0,0 +1,52 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_fiscal_position_update +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-04-29 02:39+0000\n" +"PO-Revision-Date: 2017-04-29 02:39+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Spanish (Costa Rica) (https://www.transifex.com/oca/" +"teams/23907/es_CR/)\n" +"Language: es_CR\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_invoice_fiscal_position_update +#: model:ir.model,name:account_invoice_fiscal_position_update.model_account_move +msgid "Journal Entries" +msgstr "" + +#. module: account_invoice_fiscal_position_update +#: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:0 +#, python-format +msgid "" +"The following invoice lines were not updated to the new Fiscal Position " +"because they don't have a Product: - %s You should update the Account and " +"the Taxes of these invoice lines manually." +msgstr "" + +#. module: account_invoice_fiscal_position_update +#: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:0 +#, python-format +msgid "" +"The invoice lines were not updated to the new Fiscal Position because they " +"don't have products. You should update the Account and the Taxes of each " +"invoice line manually." +msgstr "" + +#. module: account_invoice_fiscal_position_update +#: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:0 +#, python-format +msgid "Warning" +msgstr "" + +#~ msgid "Invoice" +#~ msgstr "Factura" diff --git a/account_invoice_fiscal_position_update/i18n/es_EC.po b/account_invoice_fiscal_position_update/i18n/es_EC.po new file mode 100644 index 00000000000..49510477f6a --- /dev/null +++ b/account_invoice_fiscal_position_update/i18n/es_EC.po @@ -0,0 +1,52 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_fiscal_position_update +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-04-29 02:39+0000\n" +"PO-Revision-Date: 2017-04-29 02:39+0000\n" +"Last-Translator: OCA Transbot , 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_invoice_fiscal_position_update +#: model:ir.model,name:account_invoice_fiscal_position_update.model_account_move +msgid "Journal Entries" +msgstr "" + +#. module: account_invoice_fiscal_position_update +#: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:0 +#, python-format +msgid "" +"The following invoice lines were not updated to the new Fiscal Position " +"because they don't have a Product: - %s You should update the Account and " +"the Taxes of these invoice lines manually." +msgstr "" + +#. module: account_invoice_fiscal_position_update +#: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:0 +#, python-format +msgid "" +"The invoice lines were not updated to the new Fiscal Position because they " +"don't have products. You should update the Account and the Taxes of each " +"invoice line manually." +msgstr "" + +#. module: account_invoice_fiscal_position_update +#: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:0 +#, python-format +msgid "Warning" +msgstr "" + +#~ msgid "Invoice" +#~ msgstr "Factura" diff --git a/account_invoice_fiscal_position_update/i18n/es_ES.po b/account_invoice_fiscal_position_update/i18n/es_ES.po new file mode 100644 index 00000000000..61792f78c5b --- /dev/null +++ b/account_invoice_fiscal_position_update/i18n/es_ES.po @@ -0,0 +1,52 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_fiscal_position_update +# +# Translators: +# Fernando Lara , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-04-29 02:39+0000\n" +"PO-Revision-Date: 2017-04-29 02:39+0000\n" +"Last-Translator: Fernando Lara , 2017\n" +"Language-Team: Spanish (Spain) (https://www.transifex.com/oca/teams/23907/" +"es_ES/)\n" +"Language: es_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_invoice_fiscal_position_update +#: model:ir.model,name:account_invoice_fiscal_position_update.model_account_move +msgid "Journal Entries" +msgstr "" + +#. module: account_invoice_fiscal_position_update +#: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:0 +#, python-format +msgid "" +"The following invoice lines were not updated to the new Fiscal Position " +"because they don't have a Product: - %s You should update the Account and " +"the Taxes of these invoice lines manually." +msgstr "" + +#. module: account_invoice_fiscal_position_update +#: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:0 +#, python-format +msgid "" +"The invoice lines were not updated to the new Fiscal Position because they " +"don't have products. You should update the Account and the Taxes of each " +"invoice line manually." +msgstr "" + +#. module: account_invoice_fiscal_position_update +#: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:0 +#, python-format +msgid "Warning" +msgstr "" + +#~ msgid "Invoice" +#~ msgstr "Factura" diff --git a/account_invoice_fiscal_position_update/i18n/es_MX.po b/account_invoice_fiscal_position_update/i18n/es_MX.po new file mode 100644 index 00000000000..5c7aa6eaebb --- /dev/null +++ b/account_invoice_fiscal_position_update/i18n/es_MX.po @@ -0,0 +1,52 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_fiscal_position_update +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-04-29 02:39+0000\n" +"PO-Revision-Date: 2017-04-29 02:39+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Spanish (Mexico) (https://www.transifex.com/oca/teams/23907/" +"es_MX/)\n" +"Language: es_MX\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_invoice_fiscal_position_update +#: model:ir.model,name:account_invoice_fiscal_position_update.model_account_move +msgid "Journal Entries" +msgstr "" + +#. module: account_invoice_fiscal_position_update +#: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:0 +#, python-format +msgid "" +"The following invoice lines were not updated to the new Fiscal Position " +"because they don't have a Product: - %s You should update the Account and " +"the Taxes of these invoice lines manually." +msgstr "" + +#. module: account_invoice_fiscal_position_update +#: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:0 +#, python-format +msgid "" +"The invoice lines were not updated to the new Fiscal Position because they " +"don't have products. You should update the Account and the Taxes of each " +"invoice line manually." +msgstr "" + +#. module: account_invoice_fiscal_position_update +#: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:0 +#, python-format +msgid "Warning" +msgstr "" + +#~ msgid "Invoice" +#~ msgstr "Factura" diff --git a/account_invoice_fiscal_position_update/i18n/es_PE.po b/account_invoice_fiscal_position_update/i18n/es_PE.po new file mode 100644 index 00000000000..486d709c5e6 --- /dev/null +++ b/account_invoice_fiscal_position_update/i18n/es_PE.po @@ -0,0 +1,52 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_fiscal_position_update +# +# Translators: +# OCA Transbot , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-04-18 02:47+0000\n" +"PO-Revision-Date: 2018-04-18 02:47+0000\n" +"Last-Translator: OCA Transbot , 2018\n" +"Language-Team: Spanish (Peru) (https://www.transifex.com/oca/teams/23907/" +"es_PE/)\n" +"Language: es_PE\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_invoice_fiscal_position_update +#: model:ir.model,name:account_invoice_fiscal_position_update.model_account_move +msgid "Journal Entries" +msgstr "" + +#. module: account_invoice_fiscal_position_update +#: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:0 +#, python-format +msgid "" +"The following invoice lines were not updated to the new Fiscal Position " +"because they don't have a Product: - %s You should update the Account and " +"the Taxes of these invoice lines manually." +msgstr "" + +#. module: account_invoice_fiscal_position_update +#: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:0 +#, python-format +msgid "" +"The invoice lines were not updated to the new Fiscal Position because they " +"don't have products. You should update the Account and the Taxes of each " +"invoice line manually." +msgstr "" + +#. module: account_invoice_fiscal_position_update +#: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:0 +#, python-format +msgid "Warning" +msgstr "" + +#~ msgid "Invoice" +#~ msgstr "Factura" diff --git a/account_invoice_fiscal_position_update/i18n/et.po b/account_invoice_fiscal_position_update/i18n/et.po new file mode 100644 index 00000000000..1b84ed15e0d --- /dev/null +++ b/account_invoice_fiscal_position_update/i18n/et.po @@ -0,0 +1,51 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_fiscal_position_update +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-04-29 02:39+0000\n" +"PO-Revision-Date: 2017-04-29 02:39+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Estonian (https://www.transifex.com/oca/teams/23907/et/)\n" +"Language: et\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_invoice_fiscal_position_update +#: model:ir.model,name:account_invoice_fiscal_position_update.model_account_move +msgid "Journal Entries" +msgstr "" + +#. module: account_invoice_fiscal_position_update +#: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:0 +#, python-format +msgid "" +"The following invoice lines were not updated to the new Fiscal Position " +"because they don't have a Product: - %s You should update the Account and " +"the Taxes of these invoice lines manually." +msgstr "" + +#. module: account_invoice_fiscal_position_update +#: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:0 +#, python-format +msgid "" +"The invoice lines were not updated to the new Fiscal Position because they " +"don't have products. You should update the Account and the Taxes of each " +"invoice line manually." +msgstr "" + +#. module: account_invoice_fiscal_position_update +#: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:0 +#, python-format +msgid "Warning" +msgstr "" + +#~ msgid "Invoice" +#~ msgstr "Arve" diff --git a/account_invoice_fiscal_position_update/i18n/fi.po b/account_invoice_fiscal_position_update/i18n/fi.po new file mode 100644 index 00000000000..7283e8e38fa --- /dev/null +++ b/account_invoice_fiscal_position_update/i18n/fi.po @@ -0,0 +1,51 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_fiscal_position_update +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-04-29 02:39+0000\n" +"PO-Revision-Date: 2017-04-29 02:39+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_invoice_fiscal_position_update +#: model:ir.model,name:account_invoice_fiscal_position_update.model_account_move +msgid "Journal Entries" +msgstr "" + +#. module: account_invoice_fiscal_position_update +#: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:0 +#, python-format +msgid "" +"The following invoice lines were not updated to the new Fiscal Position " +"because they don't have a Product: - %s You should update the Account and " +"the Taxes of these invoice lines manually." +msgstr "" + +#. module: account_invoice_fiscal_position_update +#: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:0 +#, python-format +msgid "" +"The invoice lines were not updated to the new Fiscal Position because they " +"don't have products. You should update the Account and the Taxes of each " +"invoice line manually." +msgstr "" + +#. module: account_invoice_fiscal_position_update +#: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:0 +#, python-format +msgid "Warning" +msgstr "" + +#~ msgid "Invoice" +#~ msgstr "Lasku" diff --git a/account_invoice_fiscal_position_update/i18n/fr.po b/account_invoice_fiscal_position_update/i18n/fr.po new file mode 100644 index 00000000000..fb0a058d253 --- /dev/null +++ b/account_invoice_fiscal_position_update/i18n/fr.po @@ -0,0 +1,60 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_fiscal_position_update +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-11-23 13:51+0000\n" +"PO-Revision-Date: 2017-11-23 13:51+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_invoice_fiscal_position_update +#: model:ir.model,name:account_invoice_fiscal_position_update.model_account_move +msgid "Journal Entries" +msgstr "" + +#. module: account_invoice_fiscal_position_update +#: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:0 +#, fuzzy, python-format +msgid "" +"The following invoice lines were not updated to the new Fiscal Position " +"because they don't have a Product: - %s You should update the Account and " +"the Taxes of these invoice lines manually." +msgstr "" +"En l'absence d'article, le changement de la position fiscale n'a pas " +"actualisé les lignes suivantes de la facture :\n" +"- %s\n" +"Vous devez mettre à jour manuellement le compte comptable et les taxes sur " +"chaque ligne de facture." + +#. module: account_invoice_fiscal_position_update +#: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:0 +#, fuzzy, python-format +msgid "" +"The invoice lines were not updated to the new Fiscal Position because they " +"don't have products. You should update the Account and the Taxes of each " +"invoice line manually." +msgstr "" +"Les lignes de facture n'ont pas été mise-à-jour suite au changement de la " +"position fiscale car elles ne contiennent pas d'article.\n" +"Vous devez mettre à jour manuellement le compte comptable et les taxes sur " +"chaque ligne de facture." + +#. module: account_invoice_fiscal_position_update +#: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:0 +#, python-format +msgid "Warning" +msgstr "Avertissement" + +#~ msgid "Invoice" +#~ msgstr "Facture" diff --git a/account_invoice_fiscal_position_update/i18n/fr_CA.po b/account_invoice_fiscal_position_update/i18n/fr_CA.po new file mode 100644 index 00000000000..6b35724d9b1 --- /dev/null +++ b/account_invoice_fiscal_position_update/i18n/fr_CA.po @@ -0,0 +1,52 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_fiscal_position_update +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-04-29 02:39+0000\n" +"PO-Revision-Date: 2017-04-29 02:39+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: French (Canada) (https://www.transifex.com/oca/teams/23907/" +"fr_CA/)\n" +"Language: fr_CA\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_invoice_fiscal_position_update +#: model:ir.model,name:account_invoice_fiscal_position_update.model_account_move +msgid "Journal Entries" +msgstr "" + +#. module: account_invoice_fiscal_position_update +#: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:0 +#, python-format +msgid "" +"The following invoice lines were not updated to the new Fiscal Position " +"because they don't have a Product: - %s You should update the Account and " +"the Taxes of these invoice lines manually." +msgstr "" + +#. module: account_invoice_fiscal_position_update +#: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:0 +#, python-format +msgid "" +"The invoice lines were not updated to the new Fiscal Position because they " +"don't have products. You should update the Account and the Taxes of each " +"invoice line manually." +msgstr "" + +#. module: account_invoice_fiscal_position_update +#: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:0 +#, python-format +msgid "Warning" +msgstr "" + +#~ msgid "Invoice" +#~ msgstr "Facture" diff --git a/account_invoice_fiscal_position_update/i18n/fr_CH.po b/account_invoice_fiscal_position_update/i18n/fr_CH.po new file mode 100644 index 00000000000..2b65dee0bd7 --- /dev/null +++ b/account_invoice_fiscal_position_update/i18n/fr_CH.po @@ -0,0 +1,52 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_fiscal_position_update +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-04-29 02:39+0000\n" +"PO-Revision-Date: 2017-04-29 02:39+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: French (Switzerland) (https://www.transifex.com/oca/" +"teams/23907/fr_CH/)\n" +"Language: fr_CH\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_invoice_fiscal_position_update +#: model:ir.model,name:account_invoice_fiscal_position_update.model_account_move +msgid "Journal Entries" +msgstr "" + +#. module: account_invoice_fiscal_position_update +#: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:0 +#, python-format +msgid "" +"The following invoice lines were not updated to the new Fiscal Position " +"because they don't have a Product: - %s You should update the Account and " +"the Taxes of these invoice lines manually." +msgstr "" + +#. module: account_invoice_fiscal_position_update +#: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:0 +#, python-format +msgid "" +"The invoice lines were not updated to the new Fiscal Position because they " +"don't have products. You should update the Account and the Taxes of each " +"invoice line manually." +msgstr "" + +#. module: account_invoice_fiscal_position_update +#: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:0 +#, python-format +msgid "Warning" +msgstr "" + +#~ msgid "Invoice" +#~ msgstr "Facture" diff --git a/account_invoice_fiscal_position_update/i18n/gl.po b/account_invoice_fiscal_position_update/i18n/gl.po new file mode 100644 index 00000000000..6cbbafa6457 --- /dev/null +++ b/account_invoice_fiscal_position_update/i18n/gl.po @@ -0,0 +1,51 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_fiscal_position_update +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-04-29 02:39+0000\n" +"PO-Revision-Date: 2017-04-29 02:39+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Galician (https://www.transifex.com/oca/teams/23907/gl/)\n" +"Language: gl\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_invoice_fiscal_position_update +#: model:ir.model,name:account_invoice_fiscal_position_update.model_account_move +msgid "Journal Entries" +msgstr "" + +#. module: account_invoice_fiscal_position_update +#: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:0 +#, python-format +msgid "" +"The following invoice lines were not updated to the new Fiscal Position " +"because they don't have a Product: - %s You should update the Account and " +"the Taxes of these invoice lines manually." +msgstr "" + +#. module: account_invoice_fiscal_position_update +#: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:0 +#, python-format +msgid "" +"The invoice lines were not updated to the new Fiscal Position because they " +"don't have products. You should update the Account and the Taxes of each " +"invoice line manually." +msgstr "" + +#. module: account_invoice_fiscal_position_update +#: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:0 +#, python-format +msgid "Warning" +msgstr "" + +#~ msgid "Invoice" +#~ msgstr "Factura" diff --git a/account_invoice_fiscal_position_update/i18n/hr.po b/account_invoice_fiscal_position_update/i18n/hr.po new file mode 100644 index 00000000000..0d4d1ebb6ed --- /dev/null +++ b/account_invoice_fiscal_position_update/i18n/hr.po @@ -0,0 +1,60 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_fiscal_position_update +# +# Translators: +# OCA Transbot , 2017 +# Bole , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-02-03 01:13+0000\n" +"PO-Revision-Date: 2018-02-03 01:13+0000\n" +"Last-Translator: Bole , 2018\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" + +#. module: account_invoice_fiscal_position_update +#: model:ir.model,name:account_invoice_fiscal_position_update.model_account_move +msgid "Journal Entries" +msgstr "" + +#. module: account_invoice_fiscal_position_update +#: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:0 +#, fuzzy, python-format +msgid "" +"The following invoice lines were not updated to the new Fiscal Position " +"because they don't have a Product: - %s You should update the Account and " +"the Taxes of these invoice lines manually." +msgstr "" +"Sljedeći retci računa nisu ažurirani u skladu sa novom fiskalnom pozicijom " +"jer ne sadrže Proizvod.\n" +"- %s\n" +"Potrebno je ručno ažurirati poreze i konta na navedenim stavkama." + +#. module: account_invoice_fiscal_position_update +#: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:0 +#, fuzzy, python-format +msgid "" +"The invoice lines were not updated to the new Fiscal Position because they " +"don't have products. You should update the Account and the Taxes of each " +"invoice line manually." +msgstr "" +"Stavke računa nisu ažurirane u sklado sa novom fiskalnom pozicijom jer ne " +"sadrže proizvod.\n" +"Potrebno je ručno ažurirati poreze i konta na stavkama." + +#. module: account_invoice_fiscal_position_update +#: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:0 +#, python-format +msgid "Warning" +msgstr "Upozorenje" + +#~ msgid "Invoice" +#~ msgstr "Račun" diff --git a/account_invoice_fiscal_position_update/i18n/hr_HR.po b/account_invoice_fiscal_position_update/i18n/hr_HR.po new file mode 100644 index 00000000000..83cd28ca406 --- /dev/null +++ b/account_invoice_fiscal_position_update/i18n/hr_HR.po @@ -0,0 +1,61 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_fiscal_position_update +# +# Translators: +# Bole , 2017 +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-11-23 13:51+0000\n" +"PO-Revision-Date: 2017-11-23 13:51+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_invoice_fiscal_position_update +#: model:ir.model,name:account_invoice_fiscal_position_update.model_account_move +msgid "Journal Entries" +msgstr "" + +#. module: account_invoice_fiscal_position_update +#: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:0 +#, fuzzy, python-format +msgid "" +"The following invoice lines were not updated to the new Fiscal Position " +"because they don't have a Product: - %s You should update the Account and " +"the Taxes of these invoice lines manually." +msgstr "" +"Sljedeći retci računa nisu ažurirani u skladu sa novom fiskalnom pozicijom " +"jer ne sadrže Proizvod.\n" +"- %s\n" +"Potrebno je ručno ažurirati poreze i konta na navedenim stavkama." + +#. module: account_invoice_fiscal_position_update +#: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:0 +#, fuzzy, python-format +msgid "" +"The invoice lines were not updated to the new Fiscal Position because they " +"don't have products. You should update the Account and the Taxes of each " +"invoice line manually." +msgstr "" +"Stavke računa nisu ažurirane u sklado sa novom fiskalnom pozicijom jer ne " +"sadrže proizvod.\n" +"Potrebno je ručno ažurirati poreze i konta na stavkama." + +#. module: account_invoice_fiscal_position_update +#: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:0 +#, python-format +msgid "Warning" +msgstr "Upozorenje" + +#~ msgid "Invoice" +#~ msgstr "Račun" diff --git a/account_invoice_fiscal_position_update/i18n/hu.po b/account_invoice_fiscal_position_update/i18n/hu.po new file mode 100644 index 00000000000..89e50485967 --- /dev/null +++ b/account_invoice_fiscal_position_update/i18n/hu.po @@ -0,0 +1,51 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_fiscal_position_update +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-04-29 02:39+0000\n" +"PO-Revision-Date: 2017-04-29 02:39+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Hungarian (https://www.transifex.com/oca/teams/23907/hu/)\n" +"Language: hu\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_invoice_fiscal_position_update +#: model:ir.model,name:account_invoice_fiscal_position_update.model_account_move +msgid "Journal Entries" +msgstr "" + +#. module: account_invoice_fiscal_position_update +#: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:0 +#, python-format +msgid "" +"The following invoice lines were not updated to the new Fiscal Position " +"because they don't have a Product: - %s You should update the Account and " +"the Taxes of these invoice lines manually." +msgstr "" + +#. module: account_invoice_fiscal_position_update +#: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:0 +#, python-format +msgid "" +"The invoice lines were not updated to the new Fiscal Position because they " +"don't have products. You should update the Account and the Taxes of each " +"invoice line manually." +msgstr "" + +#. module: account_invoice_fiscal_position_update +#: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:0 +#, python-format +msgid "Warning" +msgstr "" + +#~ msgid "Invoice" +#~ msgstr "Számla" diff --git a/account_invoice_fiscal_position_update/i18n/id.po b/account_invoice_fiscal_position_update/i18n/id.po new file mode 100644 index 00000000000..ae2958e5746 --- /dev/null +++ b/account_invoice_fiscal_position_update/i18n/id.po @@ -0,0 +1,51 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_fiscal_position_update +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-04-29 02:39+0000\n" +"PO-Revision-Date: 2017-04-29 02:39+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Indonesian (https://www.transifex.com/oca/teams/23907/id/)\n" +"Language: id\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_invoice_fiscal_position_update +#: model:ir.model,name:account_invoice_fiscal_position_update.model_account_move +msgid "Journal Entries" +msgstr "" + +#. module: account_invoice_fiscal_position_update +#: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:0 +#, python-format +msgid "" +"The following invoice lines were not updated to the new Fiscal Position " +"because they don't have a Product: - %s You should update the Account and " +"the Taxes of these invoice lines manually." +msgstr "" + +#. module: account_invoice_fiscal_position_update +#: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:0 +#, python-format +msgid "" +"The invoice lines were not updated to the new Fiscal Position because they " +"don't have products. You should update the Account and the Taxes of each " +"invoice line manually." +msgstr "" + +#. module: account_invoice_fiscal_position_update +#: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:0 +#, python-format +msgid "Warning" +msgstr "" + +#~ msgid "Invoice" +#~ msgstr "Faktur" diff --git a/account_invoice_fiscal_position_update/i18n/it.po b/account_invoice_fiscal_position_update/i18n/it.po new file mode 100644 index 00000000000..b547c892fc1 --- /dev/null +++ b/account_invoice_fiscal_position_update/i18n/it.po @@ -0,0 +1,51 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_fiscal_position_update +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-04-29 02:39+0000\n" +"PO-Revision-Date: 2017-04-29 02:39+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_invoice_fiscal_position_update +#: model:ir.model,name:account_invoice_fiscal_position_update.model_account_move +msgid "Journal Entries" +msgstr "" + +#. module: account_invoice_fiscal_position_update +#: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:0 +#, python-format +msgid "" +"The following invoice lines were not updated to the new Fiscal Position " +"because they don't have a Product: - %s You should update the Account and " +"the Taxes of these invoice lines manually." +msgstr "" + +#. module: account_invoice_fiscal_position_update +#: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:0 +#, python-format +msgid "" +"The invoice lines were not updated to the new Fiscal Position because they " +"don't have products. You should update the Account and the Taxes of each " +"invoice line manually." +msgstr "" + +#. module: account_invoice_fiscal_position_update +#: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:0 +#, python-format +msgid "Warning" +msgstr "" + +#~ msgid "Invoice" +#~ msgstr "Fattura" diff --git a/account_invoice_fiscal_position_update/i18n/ja.po b/account_invoice_fiscal_position_update/i18n/ja.po new file mode 100644 index 00000000000..6fd9d8418a5 --- /dev/null +++ b/account_invoice_fiscal_position_update/i18n/ja.po @@ -0,0 +1,51 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_fiscal_position_update +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-04-29 02:39+0000\n" +"PO-Revision-Date: 2017-04-29 02:39+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Japanese (https://www.transifex.com/oca/teams/23907/ja/)\n" +"Language: ja\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_invoice_fiscal_position_update +#: model:ir.model,name:account_invoice_fiscal_position_update.model_account_move +msgid "Journal Entries" +msgstr "" + +#. module: account_invoice_fiscal_position_update +#: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:0 +#, python-format +msgid "" +"The following invoice lines were not updated to the new Fiscal Position " +"because they don't have a Product: - %s You should update the Account and " +"the Taxes of these invoice lines manually." +msgstr "" + +#. module: account_invoice_fiscal_position_update +#: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:0 +#, python-format +msgid "" +"The invoice lines were not updated to the new Fiscal Position because they " +"don't have products. You should update the Account and the Taxes of each " +"invoice line manually." +msgstr "" + +#. module: account_invoice_fiscal_position_update +#: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:0 +#, python-format +msgid "Warning" +msgstr "" + +#~ msgid "Invoice" +#~ msgstr "請求書" diff --git a/account_invoice_fiscal_position_update/i18n/lt.po b/account_invoice_fiscal_position_update/i18n/lt.po new file mode 100644 index 00000000000..e1c6f80b0f0 --- /dev/null +++ b/account_invoice_fiscal_position_update/i18n/lt.po @@ -0,0 +1,52 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_fiscal_position_update +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-04-29 02:39+0000\n" +"PO-Revision-Date: 2017-04-29 02:39+0000\n" +"Last-Translator: OCA Transbot , 2017\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_invoice_fiscal_position_update +#: model:ir.model,name:account_invoice_fiscal_position_update.model_account_move +msgid "Journal Entries" +msgstr "" + +#. module: account_invoice_fiscal_position_update +#: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:0 +#, python-format +msgid "" +"The following invoice lines were not updated to the new Fiscal Position " +"because they don't have a Product: - %s You should update the Account and " +"the Taxes of these invoice lines manually." +msgstr "" + +#. module: account_invoice_fiscal_position_update +#: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:0 +#, python-format +msgid "" +"The invoice lines were not updated to the new Fiscal Position because they " +"don't have products. You should update the Account and the Taxes of each " +"invoice line manually." +msgstr "" + +#. module: account_invoice_fiscal_position_update +#: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:0 +#, python-format +msgid "Warning" +msgstr "" + +#~ msgid "Invoice" +#~ msgstr "Sąskaita faktūra" diff --git a/account_invoice_fiscal_position_update/i18n/mk.po b/account_invoice_fiscal_position_update/i18n/mk.po new file mode 100644 index 00000000000..d9e44441770 --- /dev/null +++ b/account_invoice_fiscal_position_update/i18n/mk.po @@ -0,0 +1,51 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_fiscal_position_update +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-04-29 02:39+0000\n" +"PO-Revision-Date: 2017-04-29 02:39+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Macedonian (https://www.transifex.com/oca/teams/23907/mk/)\n" +"Language: mk\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" + +#. module: account_invoice_fiscal_position_update +#: model:ir.model,name:account_invoice_fiscal_position_update.model_account_move +msgid "Journal Entries" +msgstr "" + +#. module: account_invoice_fiscal_position_update +#: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:0 +#, python-format +msgid "" +"The following invoice lines were not updated to the new Fiscal Position " +"because they don't have a Product: - %s You should update the Account and " +"the Taxes of these invoice lines manually." +msgstr "" + +#. module: account_invoice_fiscal_position_update +#: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:0 +#, python-format +msgid "" +"The invoice lines were not updated to the new Fiscal Position because they " +"don't have products. You should update the Account and the Taxes of each " +"invoice line manually." +msgstr "" + +#. module: account_invoice_fiscal_position_update +#: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:0 +#, python-format +msgid "Warning" +msgstr "" + +#~ msgid "Invoice" +#~ msgstr "Фактура" diff --git a/account_invoice_fiscal_position_update/i18n/mn.po b/account_invoice_fiscal_position_update/i18n/mn.po new file mode 100644 index 00000000000..c48f5e5d10b --- /dev/null +++ b/account_invoice_fiscal_position_update/i18n/mn.po @@ -0,0 +1,51 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_fiscal_position_update +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-04-29 02:39+0000\n" +"PO-Revision-Date: 2017-04-29 02:39+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Mongolian (https://www.transifex.com/oca/teams/23907/mn/)\n" +"Language: mn\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_invoice_fiscal_position_update +#: model:ir.model,name:account_invoice_fiscal_position_update.model_account_move +msgid "Journal Entries" +msgstr "" + +#. module: account_invoice_fiscal_position_update +#: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:0 +#, python-format +msgid "" +"The following invoice lines were not updated to the new Fiscal Position " +"because they don't have a Product: - %s You should update the Account and " +"the Taxes of these invoice lines manually." +msgstr "" + +#. module: account_invoice_fiscal_position_update +#: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:0 +#, python-format +msgid "" +"The invoice lines were not updated to the new Fiscal Position because they " +"don't have products. You should update the Account and the Taxes of each " +"invoice line manually." +msgstr "" + +#. module: account_invoice_fiscal_position_update +#: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:0 +#, python-format +msgid "Warning" +msgstr "" + +#~ msgid "Invoice" +#~ msgstr "Нэхэмжлэл" diff --git a/account_invoice_fiscal_position_update/i18n/nb.po b/account_invoice_fiscal_position_update/i18n/nb.po new file mode 100644 index 00000000000..55b67aae5b6 --- /dev/null +++ b/account_invoice_fiscal_position_update/i18n/nb.po @@ -0,0 +1,52 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_fiscal_position_update +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-04-29 02:39+0000\n" +"PO-Revision-Date: 2017-04-29 02:39+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Norwegian Bokmål (https://www.transifex.com/oca/teams/23907/" +"nb/)\n" +"Language: nb\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_invoice_fiscal_position_update +#: model:ir.model,name:account_invoice_fiscal_position_update.model_account_move +msgid "Journal Entries" +msgstr "" + +#. module: account_invoice_fiscal_position_update +#: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:0 +#, python-format +msgid "" +"The following invoice lines were not updated to the new Fiscal Position " +"because they don't have a Product: - %s You should update the Account and " +"the Taxes of these invoice lines manually." +msgstr "" + +#. module: account_invoice_fiscal_position_update +#: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:0 +#, python-format +msgid "" +"The invoice lines were not updated to the new Fiscal Position because they " +"don't have products. You should update the Account and the Taxes of each " +"invoice line manually." +msgstr "" + +#. module: account_invoice_fiscal_position_update +#: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:0 +#, python-format +msgid "Warning" +msgstr "" + +#~ msgid "Invoice" +#~ msgstr "Faktura" diff --git a/account_invoice_fiscal_position_update/i18n/nb_NO.po b/account_invoice_fiscal_position_update/i18n/nb_NO.po new file mode 100644 index 00000000000..8122e2e05df --- /dev/null +++ b/account_invoice_fiscal_position_update/i18n/nb_NO.po @@ -0,0 +1,52 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_fiscal_position_update +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-04-29 02:39+0000\n" +"PO-Revision-Date: 2017-04-29 02:39+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Norwegian Bokmål (Norway) (https://www.transifex.com/oca/" +"teams/23907/nb_NO/)\n" +"Language: nb_NO\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_invoice_fiscal_position_update +#: model:ir.model,name:account_invoice_fiscal_position_update.model_account_move +msgid "Journal Entries" +msgstr "" + +#. module: account_invoice_fiscal_position_update +#: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:0 +#, python-format +msgid "" +"The following invoice lines were not updated to the new Fiscal Position " +"because they don't have a Product: - %s You should update the Account and " +"the Taxes of these invoice lines manually." +msgstr "" + +#. module: account_invoice_fiscal_position_update +#: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:0 +#, python-format +msgid "" +"The invoice lines were not updated to the new Fiscal Position because they " +"don't have products. You should update the Account and the Taxes of each " +"invoice line manually." +msgstr "" + +#. module: account_invoice_fiscal_position_update +#: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:0 +#, python-format +msgid "Warning" +msgstr "" + +#~ msgid "Invoice" +#~ msgstr "Innmelding" diff --git a/account_invoice_fiscal_position_update/i18n/nl.po b/account_invoice_fiscal_position_update/i18n/nl.po new file mode 100644 index 00000000000..c91990283f0 --- /dev/null +++ b/account_invoice_fiscal_position_update/i18n/nl.po @@ -0,0 +1,60 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_fiscal_position_update +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-04-29 02:39+0000\n" +"PO-Revision-Date: 2021-01-24 20:44+0000\n" +"Last-Translator: Bosd \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" +"X-Generator: Weblate 4.3.2\n" + +#. module: account_invoice_fiscal_position_update +#: model:ir.model,name:account_invoice_fiscal_position_update.model_account_move +msgid "Journal Entries" +msgstr "Dagboek regels" + +#. module: account_invoice_fiscal_position_update +#: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:0 +#, python-format +msgid "" +"The following invoice lines were not updated to the new Fiscal Position " +"because they don't have a Product: - %s You should update the Account and " +"the Taxes of these invoice lines manually." +msgstr "" +"De volgende factuurregels werden niet bijgewerkt naar de nieuwe fiscale \n" +"positie, omdat ze geen producten bevat:\\n\n" +"- %s\\n\n" +"U zult de grootboekrekening en BTW handmatig moeten aanpassen." + +#. module: account_invoice_fiscal_position_update +#: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:0 +#, python-format +msgid "" +"The invoice lines were not updated to the new Fiscal Position because they " +"don't have products. You should update the Account and the Taxes of each " +"invoice line manually." +msgstr "" +"De factuurregels werden niet bijgewerkt naar de nieuwe fiscale positie, \n" +"omdat ze geen producten bevat.\\n\n" +"U zult de grootboekrekening en BTW handmatig op elke factuurregel moeten \"\n" +"\"aanpassen." + +#. module: account_invoice_fiscal_position_update +#: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:0 +#, python-format +msgid "Warning" +msgstr "Waarschuwing" + +#~ msgid "Invoice" +#~ msgstr "Factuur" diff --git a/account_invoice_fiscal_position_update/i18n/nl_BE.po b/account_invoice_fiscal_position_update/i18n/nl_BE.po new file mode 100644 index 00000000000..5ded5263b44 --- /dev/null +++ b/account_invoice_fiscal_position_update/i18n/nl_BE.po @@ -0,0 +1,52 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_fiscal_position_update +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-04-29 02:39+0000\n" +"PO-Revision-Date: 2017-04-29 02:39+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Dutch (Belgium) (https://www.transifex.com/oca/teams/23907/" +"nl_BE/)\n" +"Language: nl_BE\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_invoice_fiscal_position_update +#: model:ir.model,name:account_invoice_fiscal_position_update.model_account_move +msgid "Journal Entries" +msgstr "" + +#. module: account_invoice_fiscal_position_update +#: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:0 +#, python-format +msgid "" +"The following invoice lines were not updated to the new Fiscal Position " +"because they don't have a Product: - %s You should update the Account and " +"the Taxes of these invoice lines manually." +msgstr "" + +#. module: account_invoice_fiscal_position_update +#: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:0 +#, python-format +msgid "" +"The invoice lines were not updated to the new Fiscal Position because they " +"don't have products. You should update the Account and the Taxes of each " +"invoice line manually." +msgstr "" + +#. module: account_invoice_fiscal_position_update +#: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:0 +#, python-format +msgid "Warning" +msgstr "" + +#~ msgid "Invoice" +#~ msgstr "Factuur" diff --git a/account_invoice_fiscal_position_update/i18n/nl_NL.po b/account_invoice_fiscal_position_update/i18n/nl_NL.po new file mode 100644 index 00000000000..b6ea3a7879c --- /dev/null +++ b/account_invoice_fiscal_position_update/i18n/nl_NL.po @@ -0,0 +1,61 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_fiscal_position_update +# +# Translators: +# Peter Hageman , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-11-23 13:51+0000\n" +"PO-Revision-Date: 2018-10-01 09:39+0000\n" +"Last-Translator: Yung-Wa \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" +"X-Generator: Weblate 3.1.1\n" + +#. module: account_invoice_fiscal_position_update +#: model:ir.model,name:account_invoice_fiscal_position_update.model_account_move +msgid "Journal Entries" +msgstr "" + +#. module: account_invoice_fiscal_position_update +#: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:0 +#, fuzzy, python-format +msgid "" +"The following invoice lines were not updated to the new Fiscal Position " +"because they don't have a Product: - %s You should update the Account and " +"the Taxes of these invoice lines manually." +msgstr "" +"De volgende factuurregels werden niet bijgewerkt naar de nieuwe fiscale " +"positie, omdat ze geen producten bevat:\n" +"- %s\n" +"U zult de grootboekrekening en BTW handmatig moeten aanpassen." + +#. module: account_invoice_fiscal_position_update +#: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:0 +#, fuzzy, python-format +msgid "" +"The invoice lines were not updated to the new Fiscal Position because they " +"don't have products. You should update the Account and the Taxes of each " +"invoice line manually." +msgstr "" +"De factuurregels werden niet bijgewerkt naar de nieuwe fiscale positie, " +"omdat ze geen producten bevat.\n" +"U zult de grootboekrekening en BTW handmatig op elke factuurregel moeten " +"aanpassen." + +#. module: account_invoice_fiscal_position_update +#: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:0 +#, python-format +msgid "Warning" +msgstr "Waarschuwing" + +#~ msgid "Invoice" +#~ msgstr "Factuur" diff --git a/account_invoice_fiscal_position_update/i18n/pl.po b/account_invoice_fiscal_position_update/i18n/pl.po new file mode 100644 index 00000000000..56a2549882e --- /dev/null +++ b/account_invoice_fiscal_position_update/i18n/pl.po @@ -0,0 +1,53 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_fiscal_position_update +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-04-29 02:39+0000\n" +"PO-Revision-Date: 2017-04-29 02:39+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Polish (https://www.transifex.com/oca/teams/23907/pl/)\n" +"Language: pl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n" +"%100<12 || n%100>=14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n" +"%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" + +#. module: account_invoice_fiscal_position_update +#: model:ir.model,name:account_invoice_fiscal_position_update.model_account_move +msgid "Journal Entries" +msgstr "" + +#. module: account_invoice_fiscal_position_update +#: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:0 +#, python-format +msgid "" +"The following invoice lines were not updated to the new Fiscal Position " +"because they don't have a Product: - %s You should update the Account and " +"the Taxes of these invoice lines manually." +msgstr "" + +#. module: account_invoice_fiscal_position_update +#: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:0 +#, python-format +msgid "" +"The invoice lines were not updated to the new Fiscal Position because they " +"don't have products. You should update the Account and the Taxes of each " +"invoice line manually." +msgstr "" + +#. module: account_invoice_fiscal_position_update +#: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:0 +#, python-format +msgid "Warning" +msgstr "" + +#~ msgid "Invoice" +#~ msgstr "Faktura" diff --git a/account_invoice_fiscal_position_update/i18n/pt.po b/account_invoice_fiscal_position_update/i18n/pt.po new file mode 100644 index 00000000000..81f37ed9c83 --- /dev/null +++ b/account_invoice_fiscal_position_update/i18n/pt.po @@ -0,0 +1,51 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_fiscal_position_update +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-04-29 02:39+0000\n" +"PO-Revision-Date: 2017-04-29 02:39+0000\n" +"Last-Translator: OCA Transbot , 2017\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" + +#. module: account_invoice_fiscal_position_update +#: model:ir.model,name:account_invoice_fiscal_position_update.model_account_move +msgid "Journal Entries" +msgstr "" + +#. module: account_invoice_fiscal_position_update +#: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:0 +#, python-format +msgid "" +"The following invoice lines were not updated to the new Fiscal Position " +"because they don't have a Product: - %s You should update the Account and " +"the Taxes of these invoice lines manually." +msgstr "" + +#. module: account_invoice_fiscal_position_update +#: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:0 +#, python-format +msgid "" +"The invoice lines were not updated to the new Fiscal Position because they " +"don't have products. You should update the Account and the Taxes of each " +"invoice line manually." +msgstr "" + +#. module: account_invoice_fiscal_position_update +#: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:0 +#, python-format +msgid "Warning" +msgstr "" + +#~ msgid "Invoice" +#~ msgstr "Fatura" diff --git a/account_invoice_fiscal_position_update/i18n/pt_BR.po b/account_invoice_fiscal_position_update/i18n/pt_BR.po new file mode 100644 index 00000000000..ba716ae9e94 --- /dev/null +++ b/account_invoice_fiscal_position_update/i18n/pt_BR.po @@ -0,0 +1,59 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_fiscal_position_update +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-11-23 13:51+0000\n" +"PO-Revision-Date: 2019-09-17 17:24+0000\n" +"Last-Translator: Rodrigo Macedo \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.8\n" + +#. module: account_invoice_fiscal_position_update +#: model:ir.model,name:account_invoice_fiscal_position_update.model_account_move +msgid "Journal Entries" +msgstr "" + +#. module: account_invoice_fiscal_position_update +#: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:0 +#, python-format +msgid "" +"The following invoice lines were not updated to the new Fiscal Position " +"because they don't have a Product: - %s You should update the Account and " +"the Taxes of these invoice lines manually." +msgstr "" +"As seguintes linhas da fatura não foram atualizadas na nova posição fiscal " +"porque não possuem um produto: -%s Você deve atualizar manualmente a conta e " +"os impostos dessas linhas da fatura." + +#. module: account_invoice_fiscal_position_update +#: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:0 +#, python-format +msgid "" +"The invoice lines were not updated to the new Fiscal Position because they " +"don't have products. You should update the Account and the Taxes of each " +"invoice line manually." +msgstr "" +"As linhas da fatura não foram atualizadas na nova posição fiscal porque não " +"possuem produtos. Você deve atualizar a conta e os impostos de cada linha da " +"fatura manualmente." + +#. module: account_invoice_fiscal_position_update +#: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:0 +#, python-format +msgid "Warning" +msgstr "Aviso" + +#~ msgid "Invoice" +#~ msgstr "Fatura" diff --git a/account_invoice_fiscal_position_update/i18n/pt_PT.po b/account_invoice_fiscal_position_update/i18n/pt_PT.po new file mode 100644 index 00000000000..cdbeb413e0a --- /dev/null +++ b/account_invoice_fiscal_position_update/i18n/pt_PT.po @@ -0,0 +1,52 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_fiscal_position_update +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-04-29 02:39+0000\n" +"PO-Revision-Date: 2017-04-29 02:39+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Portuguese (Portugal) (https://www.transifex.com/oca/" +"teams/23907/pt_PT/)\n" +"Language: pt_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" + +#. module: account_invoice_fiscal_position_update +#: model:ir.model,name:account_invoice_fiscal_position_update.model_account_move +msgid "Journal Entries" +msgstr "" + +#. module: account_invoice_fiscal_position_update +#: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:0 +#, python-format +msgid "" +"The following invoice lines were not updated to the new Fiscal Position " +"because they don't have a Product: - %s You should update the Account and " +"the Taxes of these invoice lines manually." +msgstr "" + +#. module: account_invoice_fiscal_position_update +#: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:0 +#, python-format +msgid "" +"The invoice lines were not updated to the new Fiscal Position because they " +"don't have products. You should update the Account and the Taxes of each " +"invoice line manually." +msgstr "" + +#. module: account_invoice_fiscal_position_update +#: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:0 +#, python-format +msgid "Warning" +msgstr "" + +#~ msgid "Invoice" +#~ msgstr "Fatura" diff --git a/account_invoice_fiscal_position_update/i18n/ro.po b/account_invoice_fiscal_position_update/i18n/ro.po new file mode 100644 index 00000000000..cea96d63204 --- /dev/null +++ b/account_invoice_fiscal_position_update/i18n/ro.po @@ -0,0 +1,52 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_fiscal_position_update +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-04-29 02:39+0000\n" +"PO-Revision-Date: 2017-04-29 02:39+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Romanian (https://www.transifex.com/oca/teams/23907/ro/)\n" +"Language: ro\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%100>19)||((n%100==0)&&(n!=0)))?" +"2:1));\n" + +#. module: account_invoice_fiscal_position_update +#: model:ir.model,name:account_invoice_fiscal_position_update.model_account_move +msgid "Journal Entries" +msgstr "" + +#. module: account_invoice_fiscal_position_update +#: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:0 +#, python-format +msgid "" +"The following invoice lines were not updated to the new Fiscal Position " +"because they don't have a Product: - %s You should update the Account and " +"the Taxes of these invoice lines manually." +msgstr "" + +#. module: account_invoice_fiscal_position_update +#: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:0 +#, python-format +msgid "" +"The invoice lines were not updated to the new Fiscal Position because they " +"don't have products. You should update the Account and the Taxes of each " +"invoice line manually." +msgstr "" + +#. module: account_invoice_fiscal_position_update +#: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:0 +#, python-format +msgid "Warning" +msgstr "" + +#~ msgid "Invoice" +#~ msgstr "Factura" diff --git a/account_invoice_fiscal_position_update/i18n/ru.po b/account_invoice_fiscal_position_update/i18n/ru.po new file mode 100644 index 00000000000..49312e82e83 --- /dev/null +++ b/account_invoice_fiscal_position_update/i18n/ru.po @@ -0,0 +1,53 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_fiscal_position_update +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-04-29 02:39+0000\n" +"PO-Revision-Date: 2017-04-29 02:39+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Russian (https://www.transifex.com/oca/teams/23907/ru/)\n" +"Language: ru\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n" +"%100>=11 && n%100<=14)? 2 : 3);\n" + +#. module: account_invoice_fiscal_position_update +#: model:ir.model,name:account_invoice_fiscal_position_update.model_account_move +msgid "Journal Entries" +msgstr "" + +#. module: account_invoice_fiscal_position_update +#: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:0 +#, python-format +msgid "" +"The following invoice lines were not updated to the new Fiscal Position " +"because they don't have a Product: - %s You should update the Account and " +"the Taxes of these invoice lines manually." +msgstr "" + +#. module: account_invoice_fiscal_position_update +#: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:0 +#, python-format +msgid "" +"The invoice lines were not updated to the new Fiscal Position because they " +"don't have products. You should update the Account and the Taxes of each " +"invoice line manually." +msgstr "" + +#. module: account_invoice_fiscal_position_update +#: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:0 +#, python-format +msgid "Warning" +msgstr "" + +#~ msgid "Invoice" +#~ msgstr "Счет" diff --git a/account_invoice_fiscal_position_update/i18n/sk_SK.po b/account_invoice_fiscal_position_update/i18n/sk_SK.po new file mode 100644 index 00000000000..8c49969c527 --- /dev/null +++ b/account_invoice_fiscal_position_update/i18n/sk_SK.po @@ -0,0 +1,52 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_fiscal_position_update +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-04-29 02:39+0000\n" +"PO-Revision-Date: 2017-04-29 02:39+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Slovak (Slovakia) (https://www.transifex.com/oca/teams/23907/" +"sk_SK/)\n" +"Language: sk_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_invoice_fiscal_position_update +#: model:ir.model,name:account_invoice_fiscal_position_update.model_account_move +msgid "Journal Entries" +msgstr "" + +#. module: account_invoice_fiscal_position_update +#: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:0 +#, python-format +msgid "" +"The following invoice lines were not updated to the new Fiscal Position " +"because they don't have a Product: - %s You should update the Account and " +"the Taxes of these invoice lines manually." +msgstr "" + +#. module: account_invoice_fiscal_position_update +#: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:0 +#, python-format +msgid "" +"The invoice lines were not updated to the new Fiscal Position because they " +"don't have products. You should update the Account and the Taxes of each " +"invoice line manually." +msgstr "" + +#. module: account_invoice_fiscal_position_update +#: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:0 +#, python-format +msgid "Warning" +msgstr "" + +#~ msgid "Invoice" +#~ msgstr "Faktúra" diff --git a/account_invoice_fiscal_position_update/i18n/sl.po b/account_invoice_fiscal_position_update/i18n/sl.po new file mode 100644 index 00000000000..fe1d21b356d --- /dev/null +++ b/account_invoice_fiscal_position_update/i18n/sl.po @@ -0,0 +1,59 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_fiscal_position_update +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-11-23 13:51+0000\n" +"PO-Revision-Date: 2017-11-23 13:51+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_invoice_fiscal_position_update +#: model:ir.model,name:account_invoice_fiscal_position_update.model_account_move +msgid "Journal Entries" +msgstr "" + +#. module: account_invoice_fiscal_position_update +#: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:0 +#, fuzzy, python-format +msgid "" +"The following invoice lines were not updated to the new Fiscal Position " +"because they don't have a Product: - %s You should update the Account and " +"the Taxes of these invoice lines manually." +msgstr "" +"Naslednje računske postavke niso bile posodobljene na nov fiskalni položaj, " +"ker ne vsebujejo proizvoda:\n" +"- %s\n" +"Konto in davke vsake računske postavke morate posodobiti ročno." + +#. module: account_invoice_fiscal_position_update +#: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:0 +#, fuzzy, python-format +msgid "" +"The invoice lines were not updated to the new Fiscal Position because they " +"don't have products. You should update the Account and the Taxes of each " +"invoice line manually." +msgstr "" +"Računske postavke niso bile posodobljene na nov fiskalni položaj, ker nimajo " +"proizvoda:\n" +"Konto in davke vsake računske postavke morate posodobiti ročno." + +#. module: account_invoice_fiscal_position_update +#: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:0 +#, python-format +msgid "Warning" +msgstr "Opozorilo" + +#~ msgid "Invoice" +#~ msgstr "Račun" diff --git a/account_invoice_fiscal_position_update/i18n/sv.po b/account_invoice_fiscal_position_update/i18n/sv.po new file mode 100644 index 00000000000..99c7ec9132d --- /dev/null +++ b/account_invoice_fiscal_position_update/i18n/sv.po @@ -0,0 +1,51 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_fiscal_position_update +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-04-29 02:39+0000\n" +"PO-Revision-Date: 2017-04-29 02:39+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Swedish (https://www.transifex.com/oca/teams/23907/sv/)\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" + +#. module: account_invoice_fiscal_position_update +#: model:ir.model,name:account_invoice_fiscal_position_update.model_account_move +msgid "Journal Entries" +msgstr "" + +#. module: account_invoice_fiscal_position_update +#: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:0 +#, python-format +msgid "" +"The following invoice lines were not updated to the new Fiscal Position " +"because they don't have a Product: - %s You should update the Account and " +"the Taxes of these invoice lines manually." +msgstr "" + +#. module: account_invoice_fiscal_position_update +#: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:0 +#, python-format +msgid "" +"The invoice lines were not updated to the new Fiscal Position because they " +"don't have products. You should update the Account and the Taxes of each " +"invoice line manually." +msgstr "" + +#. module: account_invoice_fiscal_position_update +#: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:0 +#, python-format +msgid "Warning" +msgstr "" + +#~ msgid "Invoice" +#~ msgstr "Faktura" diff --git a/account_invoice_fiscal_position_update/i18n/th.po b/account_invoice_fiscal_position_update/i18n/th.po new file mode 100644 index 00000000000..1c9db191ecb --- /dev/null +++ b/account_invoice_fiscal_position_update/i18n/th.po @@ -0,0 +1,51 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_fiscal_position_update +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-04-29 02:39+0000\n" +"PO-Revision-Date: 2017-04-29 02:39+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Thai (https://www.transifex.com/oca/teams/23907/th/)\n" +"Language: th\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_invoice_fiscal_position_update +#: model:ir.model,name:account_invoice_fiscal_position_update.model_account_move +msgid "Journal Entries" +msgstr "" + +#. module: account_invoice_fiscal_position_update +#: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:0 +#, python-format +msgid "" +"The following invoice lines were not updated to the new Fiscal Position " +"because they don't have a Product: - %s You should update the Account and " +"the Taxes of these invoice lines manually." +msgstr "" + +#. module: account_invoice_fiscal_position_update +#: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:0 +#, python-format +msgid "" +"The invoice lines were not updated to the new Fiscal Position because they " +"don't have products. You should update the Account and the Taxes of each " +"invoice line manually." +msgstr "" + +#. module: account_invoice_fiscal_position_update +#: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:0 +#, python-format +msgid "Warning" +msgstr "" + +#~ msgid "Invoice" +#~ msgstr "ใบแจ้งหนี้" diff --git a/account_invoice_fiscal_position_update/i18n/tr.po b/account_invoice_fiscal_position_update/i18n/tr.po new file mode 100644 index 00000000000..15b5fc15998 --- /dev/null +++ b/account_invoice_fiscal_position_update/i18n/tr.po @@ -0,0 +1,51 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_fiscal_position_update +# +# Translators: +# Ediz Duman , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-04-29 02:39+0000\n" +"PO-Revision-Date: 2017-04-29 02:39+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_invoice_fiscal_position_update +#: model:ir.model,name:account_invoice_fiscal_position_update.model_account_move +msgid "Journal Entries" +msgstr "" + +#. module: account_invoice_fiscal_position_update +#: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:0 +#, python-format +msgid "" +"The following invoice lines were not updated to the new Fiscal Position " +"because they don't have a Product: - %s You should update the Account and " +"the Taxes of these invoice lines manually." +msgstr "" + +#. module: account_invoice_fiscal_position_update +#: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:0 +#, python-format +msgid "" +"The invoice lines were not updated to the new Fiscal Position because they " +"don't have products. You should update the Account and the Taxes of each " +"invoice line manually." +msgstr "" + +#. module: account_invoice_fiscal_position_update +#: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:0 +#, python-format +msgid "Warning" +msgstr "" + +#~ msgid "Invoice" +#~ msgstr "Fatura" diff --git a/account_invoice_fiscal_position_update/i18n/tr_TR.po b/account_invoice_fiscal_position_update/i18n/tr_TR.po new file mode 100644 index 00000000000..821c1b960ba --- /dev/null +++ b/account_invoice_fiscal_position_update/i18n/tr_TR.po @@ -0,0 +1,52 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_fiscal_position_update +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-04-29 02:39+0000\n" +"PO-Revision-Date: 2017-04-29 02:39+0000\n" +"Last-Translator: OCA Transbot , 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_invoice_fiscal_position_update +#: model:ir.model,name:account_invoice_fiscal_position_update.model_account_move +msgid "Journal Entries" +msgstr "" + +#. module: account_invoice_fiscal_position_update +#: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:0 +#, python-format +msgid "" +"The following invoice lines were not updated to the new Fiscal Position " +"because they don't have a Product: - %s You should update the Account and " +"the Taxes of these invoice lines manually." +msgstr "" + +#. module: account_invoice_fiscal_position_update +#: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:0 +#, python-format +msgid "" +"The invoice lines were not updated to the new Fiscal Position because they " +"don't have products. You should update the Account and the Taxes of each " +"invoice line manually." +msgstr "" + +#. module: account_invoice_fiscal_position_update +#: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:0 +#, python-format +msgid "Warning" +msgstr "" + +#~ msgid "Invoice" +#~ msgstr "Fatura" diff --git a/account_invoice_fiscal_position_update/i18n/zh_CN.po b/account_invoice_fiscal_position_update/i18n/zh_CN.po new file mode 100644 index 00000000000..e949734cc91 --- /dev/null +++ b/account_invoice_fiscal_position_update/i18n/zh_CN.po @@ -0,0 +1,52 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_fiscal_position_update +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-04-29 02:39+0000\n" +"PO-Revision-Date: 2017-04-29 02:39+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Chinese (China) (https://www.transifex.com/oca/teams/23907/" +"zh_CN/)\n" +"Language: zh_CN\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_invoice_fiscal_position_update +#: model:ir.model,name:account_invoice_fiscal_position_update.model_account_move +msgid "Journal Entries" +msgstr "" + +#. module: account_invoice_fiscal_position_update +#: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:0 +#, python-format +msgid "" +"The following invoice lines were not updated to the new Fiscal Position " +"because they don't have a Product: - %s You should update the Account and " +"the Taxes of these invoice lines manually." +msgstr "" + +#. module: account_invoice_fiscal_position_update +#: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:0 +#, python-format +msgid "" +"The invoice lines were not updated to the new Fiscal Position because they " +"don't have products. You should update the Account and the Taxes of each " +"invoice line manually." +msgstr "" + +#. module: account_invoice_fiscal_position_update +#: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:0 +#, python-format +msgid "Warning" +msgstr "" + +#~ msgid "Invoice" +#~ msgstr "发票" diff --git a/account_invoice_fiscal_position_update/i18n/zh_TW.po b/account_invoice_fiscal_position_update/i18n/zh_TW.po new file mode 100644 index 00000000000..eb08264167c --- /dev/null +++ b/account_invoice_fiscal_position_update/i18n/zh_TW.po @@ -0,0 +1,52 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_fiscal_position_update +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-04-29 02:39+0000\n" +"PO-Revision-Date: 2017-04-29 02:39+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Chinese (Taiwan) (https://www.transifex.com/oca/teams/23907/" +"zh_TW/)\n" +"Language: zh_TW\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_invoice_fiscal_position_update +#: model:ir.model,name:account_invoice_fiscal_position_update.model_account_move +msgid "Journal Entries" +msgstr "" + +#. module: account_invoice_fiscal_position_update +#: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:0 +#, python-format +msgid "" +"The following invoice lines were not updated to the new Fiscal Position " +"because they don't have a Product: - %s You should update the Account and " +"the Taxes of these invoice lines manually." +msgstr "" + +#. module: account_invoice_fiscal_position_update +#: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:0 +#, python-format +msgid "" +"The invoice lines were not updated to the new Fiscal Position because they " +"don't have products. You should update the Account and the Taxes of each " +"invoice line manually." +msgstr "" + +#. module: account_invoice_fiscal_position_update +#: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:0 +#, python-format +msgid "Warning" +msgstr "" + +#~ msgid "Invoice" +#~ msgstr "發票" diff --git a/account_invoice_fiscal_position_update/models/__init__.py b/account_invoice_fiscal_position_update/models/__init__.py new file mode 100644 index 00000000000..9c0a4213854 --- /dev/null +++ b/account_invoice_fiscal_position_update/models/__init__.py @@ -0,0 +1 @@ +from . import account_move diff --git a/account_invoice_fiscal_position_update/models/account_move.py b/account_invoice_fiscal_position_update/models/account_move.py new file mode 100644 index 00000000000..e4287807d42 --- /dev/null +++ b/account_invoice_fiscal_position_update/models/account_move.py @@ -0,0 +1,44 @@ +# Copyright 2011-2020 Julius Network Solutions SARL +# Copyright 2014-2020 Akretion France (http://www.akretion.com) +# @author Mathieu Vatel +# @author Alexis de Lattre +# Copyright 2022 FactorLibre - Luis J. Salvatierra +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). +from odoo import _, api, fields, models + + +class AccountMove(models.Model): + _inherit = "account.move" + + fiscal_position_id = fields.Many2one(tracking=True) + + @api.onchange("fiscal_position_id") + def _onchange_fiscal_position_id_account_invoice_fiscal_position_invoice(self): + res = {} + lines_without_product = self.env["account.move.line"] + invoice_lines = self.invoice_line_ids.filtered( + lambda l: "product" == l.display_type + ) + for line in invoice_lines: + if not line.product_id: + lines_without_product |= line + else: + line._compute_tax_ids() + line._compute_account_id() + if lines_without_product: + res["warning"] = {"title": _("Warning")} + if len(lines_without_product) == len(invoice_lines): + res["warning"]["message"] = _( + "The invoice lines were not updated to the new " + "Fiscal Position because they don't have products. " + "You should update the Account and the Taxes of each " + "invoice line manually." + ) + else: + res["warning"]["message"] = _( + "The following invoice lines were not updated " + "to the new Fiscal Position because they don't have a " + "Product:\n - %s\nYou should update the Account and the " + "Taxes of these invoice lines manually." + ) % ("\n- ".join(lines_without_product.mapped("name"))) + return res diff --git a/account_invoice_fiscal_position_update/readme/CONTRIBUTORS.rst b/account_invoice_fiscal_position_update/readme/CONTRIBUTORS.rst new file mode 100644 index 00000000000..964b0a44cec --- /dev/null +++ b/account_invoice_fiscal_position_update/readme/CONTRIBUTORS.rst @@ -0,0 +1,11 @@ +* Mathieu Vatel (Julius Network Solutions) +* Alexis de Lattre +* Mourad EL HADJ MIMOUNE +* Roel Adriaans +* `Tecnativa `_: + + * Ernesto Tejeda + +* `Factor Libre `_: + + * Luis J. Salvatierra diff --git a/account_invoice_fiscal_position_update/readme/DESCRIPTION.rst b/account_invoice_fiscal_position_update/readme/DESCRIPTION.rst new file mode 100644 index 00000000000..712ada5f699 --- /dev/null +++ b/account_invoice_fiscal_position_update/readme/DESCRIPTION.rst @@ -0,0 +1,4 @@ +With this module, when a user changes the fiscal position of an invoice, the +taxes and the accounts on all the invoice lines which have a product are +automatically updated. The invoice lines without a product are not updated and +a warning is displayed to the user in this case. diff --git a/account_invoice_fiscal_position_update/readme/USAGE.rst b/account_invoice_fiscal_position_update/readme/USAGE.rst new file mode 100644 index 00000000000..caf66cc0753 --- /dev/null +++ b/account_invoice_fiscal_position_update/readme/USAGE.rst @@ -0,0 +1,2 @@ +Update fiscal position or the partner on the invoice. This will automatically +update the taxes and accounts. diff --git a/account_invoice_fiscal_position_update/static/description/icon.png b/account_invoice_fiscal_position_update/static/description/icon.png new file mode 100644 index 00000000000..3a0328b516c Binary files /dev/null and b/account_invoice_fiscal_position_update/static/description/icon.png differ diff --git a/account_invoice_fiscal_position_update/static/description/index.html b/account_invoice_fiscal_position_update/static/description/index.html new file mode 100644 index 00000000000..647f46d5f3c --- /dev/null +++ b/account_invoice_fiscal_position_update/static/description/index.html @@ -0,0 +1,445 @@ + + + + + + +Invoice Fiscal Position Update + + + +
+

Invoice Fiscal Position Update

+ + +

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

+

With this module, when a user changes the fiscal position of an invoice, the +taxes and the accounts on all the invoice lines which have a product are +automatically updated. The invoice lines without a product are not updated and +a warning is displayed to the user in this case.

+

Table of contents

+ +
+

Usage

+

Update fiscal position or the partner on the invoice. This will automatically +update the taxes and accounts.

+
+
+

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

+
    +
  • Julius Network Solutions
  • +
  • Akretion
  • +
+
+
+

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.

+

Current maintainer:

+

alexis-via

+

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

+

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

+
+
+
+ + diff --git a/account_invoice_fiscal_position_update/tests/__init__.py b/account_invoice_fiscal_position_update/tests/__init__.py new file mode 100644 index 00000000000..f24b8c8546e --- /dev/null +++ b/account_invoice_fiscal_position_update/tests/__init__.py @@ -0,0 +1,3 @@ +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + +from . import test_inv_fiscal_pos_update diff --git a/account_invoice_fiscal_position_update/tests/test_inv_fiscal_pos_update.py b/account_invoice_fiscal_position_update/tests/test_inv_fiscal_pos_update.py new file mode 100644 index 00000000000..e8fd560878f --- /dev/null +++ b/account_invoice_fiscal_position_update/tests/test_inv_fiscal_pos_update.py @@ -0,0 +1,169 @@ +# Copyright 2014 ToDay Akretion (http://www.akretion.com) +# @author Mourad EL HADJ MIMOUNE +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + +import time + +from odoo.tests import tagged + +from odoo.addons.account.tests.common import AccountTestInvoicingCommon + + +@tagged("post_install", "-at_install") +class TestProductIdChange(AccountTestInvoicingCommon): + """Test that when an included tax is mapped by a fiscal position, + when position fiscal change taxes and account wil be update on + invoice lines. + """ + + def setUp(self): + super(TestProductIdChange, self).setUp() + self.invoice_model = self.env["account.move"] + self.fiscal_position_model = self.env["account.fiscal.position"] + self.fiscal_position_tax_model = self.env["account.fiscal.position.tax"] + self.fiscal_position_account_model = self.env["account.fiscal.position.account"] + self.tax_model = self.env["account.tax"] + self.account_model = self.env["account.account"] + self.pricelist_model = self.env["product.pricelist"] + self.res_partner_model = self.env["res.partner"] + self.product_tmpl_model = self.env["product.template"] + self.product_model = self.env["product.product"] + self.invoice_line_model = self.env["account.move.line"] + self.account_receivable = self.env["account.account"].search( + [("account_type", "=", "asset_receivable")], limit=1 + ) + self.account_revenue = self.env["account.account"].search( + [("account_type", "=", "income")], limit=1 + ) + + def test_fiscal_position_id_change(self): + partner = self.res_partner_model.create(dict(name="George")) + account_export_id = self.account_model.sudo().create( + { + "code": "710000AccountInvoiceFiscalPositionUpdate", + "name": "customer export account", + "account_type": "income", + "reconcile": True, + } + ) + tax_sale = self.tax_model.create( + {"name": "Sale tax", "type_tax_use": "sale", "amount": "20.00"} + ) + + tax_export_sale = self.tax_model.create( + {"name": "Export tax", "type_tax_use": "sale", "amount": "0.00"} + ) + + product_tmpl = self.product_tmpl_model.create( + { + "name": "Car", + "list_price": "15000", + "taxes_id": [(6, 0, [tax_sale.id])], + "property_account_income_id": self.account_revenue.id, + } + ) + product = product_tmpl.product_variant_id + product.standard_price = 12000 + fp = self.fiscal_position_model.create( + {"name": "fiscal position export", "sequence": 1} + ) + fp2 = self.fiscal_position_model.create( + {"name": "fiscal position import", "sequence": 1} + ) + partner.write({"property_account_position_id": fp2.id}) + + fp_tax_sale = self.fiscal_position_tax_model.create( + { + "position_id": fp.id, + "tax_src_id": tax_sale.id, + "tax_dest_id": tax_export_sale.id, + } + ) + + fp_account = self.fiscal_position_account_model.create( + { + "position_id": fp.id, + "account_src_id": self.account_revenue.id, + "account_dest_id": account_export_id.id, + } + ) + + out_invoice = self.invoice_model.create( + { + "partner_id": partner.id, + "ref": "invoice to client", + "move_type": "out_invoice", + "invoice_date": time.strftime("%Y") + "-04-01", + } + ) + out_line = self.invoice_line_model.with_context( + check_move_validity=False + ).create( + { + "product_id": product.id, + "price_unit": 15000, + "quantity": 1, + "move_id": out_invoice.id, + "name": "Car", + "account_id": self.account_revenue.id, + } + ) + self.assertEqual( + out_line.tax_ids[0], + tax_sale, + "The sale tax off invoice line must be the same of product", + ) + out_invoice.fiscal_position_id = fp + out_invoice.with_context( + check_move_validity=False + )._onchange_fiscal_position_id_account_invoice_fiscal_position_invoice() + self.assertEqual( + out_line.tax_ids[0], + fp_tax_sale.tax_dest_id, + "The sale tax of invoice line must be changed by fiscal position", + ) + self.assertEqual( + out_line.account_id, + fp_account.account_dest_id, + "The account revenue of invoice line must be changed by fiscal position", + ) + # Test warning due to lines without product + self.invoice_line_model.with_context(check_move_validity=False).create( + { + "name": "Line without product", + "price_unit": 100, + "quantity": 1, + "move_id": out_invoice.id, + "account_id": self.account_revenue.id, + } + ) + onchange_result = out_invoice.with_context( + check_move_validity=False + )._onchange_fiscal_position_id_account_invoice_fiscal_position_invoice() + self.assertTrue(type(onchange_result) == dict) + self.assertEqual(list(onchange_result.keys()), ["warning"]) + + # for all lines without product + out_invoice_without_prd = self.invoice_model.create( + { + "partner_id": partner.id, + "ref": "invoice to client", + "move_type": "out_invoice", + "invoice_date": time.strftime("%Y") + "-04-01", + } + ) + # Test warning due to lines without product + self.invoice_line_model.with_context(check_move_validity=False).create( + { + "name": "Line without product", + "price_unit": 100, + "quantity": 1, + "move_id": out_invoice_without_prd.id, + "account_id": self.account_revenue.id, + } + ) + onchange_result = out_invoice_without_prd.with_context( + check_move_validity=False + )._onchange_fiscal_position_id_account_invoice_fiscal_position_invoice() + self.assertTrue(type(onchange_result) == dict) + self.assertEqual(list(onchange_result.keys()), ["warning"]) diff --git a/setup/account_invoice_fiscal_position_update/odoo/addons/account_invoice_fiscal_position_update b/setup/account_invoice_fiscal_position_update/odoo/addons/account_invoice_fiscal_position_update new file mode 120000 index 00000000000..5942bf98322 --- /dev/null +++ b/setup/account_invoice_fiscal_position_update/odoo/addons/account_invoice_fiscal_position_update @@ -0,0 +1 @@ +../../../../account_invoice_fiscal_position_update \ No newline at end of file diff --git a/setup/account_invoice_fiscal_position_update/setup.py b/setup/account_invoice_fiscal_position_update/setup.py new file mode 100644 index 00000000000..28c57bb6403 --- /dev/null +++ b/setup/account_invoice_fiscal_position_update/setup.py @@ -0,0 +1,6 @@ +import setuptools + +setuptools.setup( + setup_requires=['setuptools-odoo'], + odoo_addon=True, +)