diff --git a/account_invoice_triple_discount/README.rst b/account_invoice_triple_discount/README.rst new file mode 100644 index 00000000000..131f1967cac --- /dev/null +++ b/account_invoice_triple_discount/README.rst @@ -0,0 +1,97 @@ +=============================== +Account Invoice Triple Discount +=============================== + +.. !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! 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_triple_discount + :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_triple_discount + :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| + +This module allows to have three successive discounts on each invoice line. + +**Table of contents** + +.. contents:: + :local: + +Usage +===== + +Create a new invoice and add discounts in any of the three discount fields +given. They go in order of precedence so discount 2 will be calculated over +discount 1 and discount 3 over the result of discount 2. For example, let's +divide by two on every discount: + +Unit price: 600.00 -> + + - Disc. 1 = 50% -> Amount = 300.00 + - Disc. 2 = 50% -> Amount = 150.00 + - Disc. 3 = 50% -> Amount = 75.00 + +You can also use negative values to charge instead of discount: + +Unit price: 600.00 -> + + - Disc. 1 = 50% -> Amount = 300.00 + - Disc. 2 = -5% -> Amount = 315.00 + +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 +~~~~~~~ + +* QubiQ +* Tecnativa + +Contributors +~~~~~~~~~~~~ + +* David Vidal +* Pedro M. Baeza +* Nikul Chaudhary + +Maintainers +~~~~~~~~~~~ + +This module is maintained by the OCA. + +.. image:: https://odoo-community.org/logo.png + :alt: Odoo Community Association + :target: https://odoo-community.org + +OCA, or the Odoo Community Association, is a nonprofit organization whose +mission is to support the collaborative development of Odoo features and +promote its widespread use. + +This module is part of the `OCA/account-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_triple_discount/__init__.py b/account_invoice_triple_discount/__init__.py new file mode 100644 index 00000000000..0650744f6bc --- /dev/null +++ b/account_invoice_triple_discount/__init__.py @@ -0,0 +1 @@ +from . import models diff --git a/account_invoice_triple_discount/__manifest__.py b/account_invoice_triple_discount/__manifest__.py new file mode 100644 index 00000000000..7af62e57f61 --- /dev/null +++ b/account_invoice_triple_discount/__manifest__.py @@ -0,0 +1,15 @@ +# Copyright 2018 QubiQ (http://www.qubiq.es) +# Copyright 2017 Tecnativa - David Vidal +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). +{ + "name": "Account Invoice Triple Discount", + "version": "16.0.1.0.0", + "category": "Accounting & Finance", + "author": "QubiQ, Tecnativa, Odoo Community Association (OCA)", + "website": "https://github.com/OCA/account-invoicing", + "license": "AGPL-3", + "summary": "Manage triple discount on invoice lines", + "depends": ["account"], + "data": ["report/invoice.xml", "views/account_move.xml"], + "installable": True, +} diff --git a/account_invoice_triple_discount/i18n/account_invoice_triple_discount.pot b/account_invoice_triple_discount/i18n/account_invoice_triple_discount.pot new file mode 100644 index 00000000000..f59d55db792 --- /dev/null +++ b/account_invoice_triple_discount/i18n/account_invoice_triple_discount.pot @@ -0,0 +1,54 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_triple_discount +# +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_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.report_invoice_document +msgid "Disc.2 %" +msgstr "" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.report_invoice_document +msgid "Disc.3 %" +msgstr "" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.invoice_triple_discount_form_view +msgid "Disc.2%" +msgstr "" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.invoice_triple_discount_form_view +msgid "Disc.3%" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_move_line__discount2 +msgid "Discount 2 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_move_line__discount3 +msgid "Discount 3 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_move +msgid "Journal Entry" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_move_line +msgid "Journal Item" +msgstr "" diff --git a/account_invoice_triple_discount/i18n/ar.po b/account_invoice_triple_discount/i18n/ar.po new file mode 100644 index 00000000000..49e1d7ed984 --- /dev/null +++ b/account_invoice_triple_discount/i18n/ar.po @@ -0,0 +1,40 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_triple_discount +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-08-09 02:45+0000\n" +"PO-Revision-Date: 2017-08-09 02:45+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_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_invoice_line__discount2 +msgid "Discount 2 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_invoice_line__discount3 +msgid "Discount 3 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_invoice +msgid "Invoice" +msgstr "فاتورة" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_invoice_line +msgid "Invoice Line" +msgstr "خط الفاتورة" diff --git a/account_invoice_triple_discount/i18n/bg.po b/account_invoice_triple_discount/i18n/bg.po new file mode 100644 index 00000000000..3eb800de946 --- /dev/null +++ b/account_invoice_triple_discount/i18n/bg.po @@ -0,0 +1,39 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_triple_discount +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-08-09 02:45+0000\n" +"PO-Revision-Date: 2017-08-09 02:45+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_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_invoice_line__discount2 +msgid "Discount 2 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_invoice_line__discount3 +msgid "Discount 3 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_invoice +msgid "Invoice" +msgstr "Фактура" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_invoice_line +msgid "Invoice Line" +msgstr "" diff --git a/account_invoice_triple_discount/i18n/bs.po b/account_invoice_triple_discount/i18n/bs.po new file mode 100644 index 00000000000..2a1bb958e92 --- /dev/null +++ b/account_invoice_triple_discount/i18n/bs.po @@ -0,0 +1,40 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_triple_discount +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-08-09 02:45+0000\n" +"PO-Revision-Date: 2017-08-09 02:45+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_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_invoice_line__discount2 +msgid "Discount 2 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_invoice_line__discount3 +msgid "Discount 3 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_invoice +msgid "Invoice" +msgstr "Faktura" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_invoice_line +msgid "Invoice Line" +msgstr "Stavka fakture" diff --git a/account_invoice_triple_discount/i18n/ca.po b/account_invoice_triple_discount/i18n/ca.po new file mode 100644 index 00000000000..1c4a81a237c --- /dev/null +++ b/account_invoice_triple_discount/i18n/ca.po @@ -0,0 +1,50 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_triple_discount +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-08-09 02:45+0000\n" +"PO-Revision-Date: 2022-08-09 10:06+0000\n" +"Last-Translator: jabelchi \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" +"X-Generator: Weblate 4.3.2\n" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.invoice_triple_discount_form_view +msgid "Disc.2%" +msgstr "Desc.2%" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.invoice_triple_discount_form_view +msgid "Disc.3%" +msgstr "Desc.3%" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_invoice_line__discount2 +msgid "Discount 2 (%)" +msgstr "Descompte 2 (%)" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_invoice_line__discount3 +msgid "Discount 3 (%)" +msgstr "Descompte 3 (%)" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_invoice +msgid "Invoice" +msgstr "Factura" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_invoice_line +msgid "Invoice Line" +msgstr "Línia factura" diff --git a/account_invoice_triple_discount/i18n/cs.po b/account_invoice_triple_discount/i18n/cs.po new file mode 100644 index 00000000000..5f1dcc1f9ac --- /dev/null +++ b/account_invoice_triple_discount/i18n/cs.po @@ -0,0 +1,39 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_triple_discount +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-08-09 02:45+0000\n" +"PO-Revision-Date: 2017-08-09 02:45+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_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_invoice_line__discount2 +msgid "Discount 2 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_invoice_line__discount3 +msgid "Discount 3 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_invoice +msgid "Invoice" +msgstr "Faktura" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_invoice_line +msgid "Invoice Line" +msgstr "Řádek faktury" diff --git a/account_invoice_triple_discount/i18n/de.po b/account_invoice_triple_discount/i18n/de.po new file mode 100644 index 00000000000..39aa51ffec0 --- /dev/null +++ b/account_invoice_triple_discount/i18n/de.po @@ -0,0 +1,50 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_triple_discount +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-08-09 02:45+0000\n" +"PO-Revision-Date: 2018-10-11 11:45+0000\n" +"Last-Translator: Rudolf Schnapka \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.1.1\n" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.invoice_triple_discount_form_view +msgid "Disc.2%" +msgstr "2. Rabatt (%)" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.invoice_triple_discount_form_view +msgid "Disc.3%" +msgstr "3. Rabatt (%)" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_invoice_line__discount2 +msgid "Discount 2 (%)" +msgstr "2. Rabatt (%)" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_invoice_line__discount3 +msgid "Discount 3 (%)" +msgstr "3. Rabatt (%)" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_invoice +msgid "Invoice" +msgstr "Rechnung" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_invoice_line +msgid "Invoice Line" +msgstr "Rechnungsposition" diff --git a/account_invoice_triple_discount/i18n/el_GR.po b/account_invoice_triple_discount/i18n/el_GR.po new file mode 100644 index 00000000000..cc615cb89f4 --- /dev/null +++ b/account_invoice_triple_discount/i18n/el_GR.po @@ -0,0 +1,40 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_triple_discount +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-08-09 02:45+0000\n" +"PO-Revision-Date: 2017-08-09 02:45+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_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_invoice_line__discount2 +msgid "Discount 2 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_invoice_line__discount3 +msgid "Discount 3 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_invoice +msgid "Invoice" +msgstr "Τιμολόγιο" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_invoice_line +msgid "Invoice Line" +msgstr "" diff --git a/account_invoice_triple_discount/i18n/en_GB.po b/account_invoice_triple_discount/i18n/en_GB.po new file mode 100644 index 00000000000..a9048b0db73 --- /dev/null +++ b/account_invoice_triple_discount/i18n/en_GB.po @@ -0,0 +1,40 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_triple_discount +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-08-09 02:45+0000\n" +"PO-Revision-Date: 2017-08-09 02:45+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_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_invoice_line__discount2 +msgid "Discount 2 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_invoice_line__discount3 +msgid "Discount 3 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_invoice +msgid "Invoice" +msgstr "Invoice" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_invoice_line +msgid "Invoice Line" +msgstr "Invoice Line" diff --git a/account_invoice_triple_discount/i18n/es.po b/account_invoice_triple_discount/i18n/es.po new file mode 100644 index 00000000000..72511af4a53 --- /dev/null +++ b/account_invoice_triple_discount/i18n/es.po @@ -0,0 +1,39 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_triple_discount +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-08-09 02:45+0000\n" +"PO-Revision-Date: 2017-08-09 02:45+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Spanish (https://www.transifex.com/oca/teams/23907/es/)\n" +"Language: es\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_invoice_line__discount2 +msgid "Discount 2 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_invoice_line__discount3 +msgid "Discount 3 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_invoice +msgid "Invoice" +msgstr "Factura" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_invoice_line +msgid "Invoice Line" +msgstr "Línea de factura" diff --git a/account_invoice_triple_discount/i18n/es_CR.po b/account_invoice_triple_discount/i18n/es_CR.po new file mode 100644 index 00000000000..d5fcddfcaff --- /dev/null +++ b/account_invoice_triple_discount/i18n/es_CR.po @@ -0,0 +1,40 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_triple_discount +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-08-09 02:45+0000\n" +"PO-Revision-Date: 2017-08-09 02:45+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_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_invoice_line__discount2 +msgid "Discount 2 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_invoice_line__discount3 +msgid "Discount 3 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_invoice +msgid "Invoice" +msgstr "Factura" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_invoice_line +msgid "Invoice Line" +msgstr "Línea de factura" diff --git a/account_invoice_triple_discount/i18n/es_EC.po b/account_invoice_triple_discount/i18n/es_EC.po new file mode 100644 index 00000000000..040f805c02d --- /dev/null +++ b/account_invoice_triple_discount/i18n/es_EC.po @@ -0,0 +1,40 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_triple_discount +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-08-09 02:45+0000\n" +"PO-Revision-Date: 2017-08-09 02:45+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_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_invoice_line__discount2 +msgid "Discount 2 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_invoice_line__discount3 +msgid "Discount 3 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_invoice +msgid "Invoice" +msgstr "Factura" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_invoice_line +msgid "Invoice Line" +msgstr "Detalle de Factura" diff --git a/account_invoice_triple_discount/i18n/es_ES.po b/account_invoice_triple_discount/i18n/es_ES.po new file mode 100644 index 00000000000..62eebb83972 --- /dev/null +++ b/account_invoice_triple_discount/i18n/es_ES.po @@ -0,0 +1,40 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_triple_discount +# +# Translators: +# Fernando Lara , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-08-09 02:45+0000\n" +"PO-Revision-Date: 2017-08-09 02:45+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_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_invoice_line__discount2 +msgid "Discount 2 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_invoice_line__discount3 +msgid "Discount 3 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_invoice +msgid "Invoice" +msgstr "Factura" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_invoice_line +msgid "Invoice Line" +msgstr "" diff --git a/account_invoice_triple_discount/i18n/es_MX.po b/account_invoice_triple_discount/i18n/es_MX.po new file mode 100644 index 00000000000..dff46d36a3b --- /dev/null +++ b/account_invoice_triple_discount/i18n/es_MX.po @@ -0,0 +1,40 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_triple_discount +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-08-09 02:45+0000\n" +"PO-Revision-Date: 2017-08-09 02:45+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_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_invoice_line__discount2 +msgid "Discount 2 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_invoice_line__discount3 +msgid "Discount 3 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_invoice +msgid "Invoice" +msgstr "Factura" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_invoice_line +msgid "Invoice Line" +msgstr "Línea de factura" diff --git a/account_invoice_triple_discount/i18n/et.po b/account_invoice_triple_discount/i18n/et.po new file mode 100644 index 00000000000..6d548814ff1 --- /dev/null +++ b/account_invoice_triple_discount/i18n/et.po @@ -0,0 +1,39 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_triple_discount +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-08-09 02:45+0000\n" +"PO-Revision-Date: 2017-08-09 02:45+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_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_invoice_line__discount2 +msgid "Discount 2 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_invoice_line__discount3 +msgid "Discount 3 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_invoice +msgid "Invoice" +msgstr "Arve" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_invoice_line +msgid "Invoice Line" +msgstr "Arve rida" diff --git a/account_invoice_triple_discount/i18n/fi.po b/account_invoice_triple_discount/i18n/fi.po new file mode 100644 index 00000000000..b585ad5c1b8 --- /dev/null +++ b/account_invoice_triple_discount/i18n/fi.po @@ -0,0 +1,39 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_triple_discount +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-08-09 02:45+0000\n" +"PO-Revision-Date: 2017-08-09 02:45+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_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_invoice_line__discount2 +msgid "Discount 2 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_invoice_line__discount3 +msgid "Discount 3 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_invoice +msgid "Invoice" +msgstr "Lasku" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_invoice_line +msgid "Invoice Line" +msgstr "" diff --git a/account_invoice_triple_discount/i18n/fr.po b/account_invoice_triple_discount/i18n/fr.po new file mode 100644 index 00000000000..2c027663dea --- /dev/null +++ b/account_invoice_triple_discount/i18n/fr.po @@ -0,0 +1,50 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_triple_discount +# +# Translators: +# OCA Transbot , 2017 +# Quentin THEURET , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-08-09 02:45+0000\n" +"PO-Revision-Date: 2017-08-09 02:45+0000\n" +"Last-Translator: Quentin THEURET , 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_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.invoice_triple_discount_form_view +msgid "Disc.2%" +msgstr "Remise 2 (%)" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.invoice_triple_discount_form_view +msgid "Disc.3%" +msgstr "Remise 3 (%)" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_invoice_line__discount2 +msgid "Discount 2 (%)" +msgstr "Remise 2 (%)" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_invoice_line__discount3 +msgid "Discount 3 (%)" +msgstr "Remise 3 (%)" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_invoice +msgid "Invoice" +msgstr "Facture" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_invoice_line +msgid "Invoice Line" +msgstr "Ligne de facture" diff --git a/account_invoice_triple_discount/i18n/fr_CA.po b/account_invoice_triple_discount/i18n/fr_CA.po new file mode 100644 index 00000000000..817dd01d8e1 --- /dev/null +++ b/account_invoice_triple_discount/i18n/fr_CA.po @@ -0,0 +1,40 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_triple_discount +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-08-09 02:45+0000\n" +"PO-Revision-Date: 2017-08-09 02:45+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_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_invoice_line__discount2 +msgid "Discount 2 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_invoice_line__discount3 +msgid "Discount 3 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_invoice +msgid "Invoice" +msgstr "Facture" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_invoice_line +msgid "Invoice Line" +msgstr "" diff --git a/account_invoice_triple_discount/i18n/fr_CH.po b/account_invoice_triple_discount/i18n/fr_CH.po new file mode 100644 index 00000000000..6abc9457e05 --- /dev/null +++ b/account_invoice_triple_discount/i18n/fr_CH.po @@ -0,0 +1,40 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_triple_discount +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-08-09 02:45+0000\n" +"PO-Revision-Date: 2017-08-09 02:45+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_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_invoice_line__discount2 +msgid "Discount 2 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_invoice_line__discount3 +msgid "Discount 3 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_invoice +msgid "Invoice" +msgstr "Facture" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_invoice_line +msgid "Invoice Line" +msgstr "Ligne de facture" diff --git a/account_invoice_triple_discount/i18n/gl.po b/account_invoice_triple_discount/i18n/gl.po new file mode 100644 index 00000000000..ac779bdb71d --- /dev/null +++ b/account_invoice_triple_discount/i18n/gl.po @@ -0,0 +1,39 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_triple_discount +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-08-09 02:45+0000\n" +"PO-Revision-Date: 2017-08-09 02:45+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_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_invoice_line__discount2 +msgid "Discount 2 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_invoice_line__discount3 +msgid "Discount 3 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_invoice +msgid "Invoice" +msgstr "Factura" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_invoice_line +msgid "Invoice Line" +msgstr "" diff --git a/account_invoice_triple_discount/i18n/hr.po b/account_invoice_triple_discount/i18n/hr.po new file mode 100644 index 00000000000..94c0269eb42 --- /dev/null +++ b/account_invoice_triple_discount/i18n/hr.po @@ -0,0 +1,51 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_triple_discount +# +# 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:14+0000\n" +"PO-Revision-Date: 2018-02-03 01:14+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_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.invoice_triple_discount_form_view +msgid "Disc.2%" +msgstr "Popust 2 (%)" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.invoice_triple_discount_form_view +msgid "Disc.3%" +msgstr "Popust 3 (%)" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_invoice_line__discount2 +msgid "Discount 2 (%)" +msgstr "Popust 2 (%)" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_invoice_line__discount3 +msgid "Discount 3 (%)" +msgstr "Popust 3 (%)" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_invoice +msgid "Invoice" +msgstr "Račun" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_invoice_line +msgid "Invoice Line" +msgstr "Stavka računa" diff --git a/account_invoice_triple_discount/i18n/hr_HR.po b/account_invoice_triple_discount/i18n/hr_HR.po new file mode 100644 index 00000000000..58cdb77767f --- /dev/null +++ b/account_invoice_triple_discount/i18n/hr_HR.po @@ -0,0 +1,52 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_triple_discount +# +# Translators: +# OCA Transbot , 2017 +# Bole , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-08-11 23:30+0000\n" +"PO-Revision-Date: 2017-08-11 23:30+0000\n" +"Last-Translator: Bole , 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_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.invoice_triple_discount_form_view +msgid "Disc.2%" +msgstr "Popust 2 (%)" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.invoice_triple_discount_form_view +msgid "Disc.3%" +msgstr "Popust 3 (%)" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_invoice_line__discount2 +msgid "Discount 2 (%)" +msgstr "Popust 2 (%)" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_invoice_line__discount3 +msgid "Discount 3 (%)" +msgstr "Popust 3 (%)" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_invoice +msgid "Invoice" +msgstr "Račun" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_invoice_line +msgid "Invoice Line" +msgstr "Stavka računa" diff --git a/account_invoice_triple_discount/i18n/hu.po b/account_invoice_triple_discount/i18n/hu.po new file mode 100644 index 00000000000..147b210b2cb --- /dev/null +++ b/account_invoice_triple_discount/i18n/hu.po @@ -0,0 +1,39 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_triple_discount +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-08-09 02:45+0000\n" +"PO-Revision-Date: 2017-08-09 02:45+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_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_invoice_line__discount2 +msgid "Discount 2 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_invoice_line__discount3 +msgid "Discount 3 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_invoice +msgid "Invoice" +msgstr "Számla" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_invoice_line +msgid "Invoice Line" +msgstr "Számlasor" diff --git a/account_invoice_triple_discount/i18n/id.po b/account_invoice_triple_discount/i18n/id.po new file mode 100644 index 00000000000..051cd6ad4f0 --- /dev/null +++ b/account_invoice_triple_discount/i18n/id.po @@ -0,0 +1,39 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_triple_discount +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-08-09 02:45+0000\n" +"PO-Revision-Date: 2017-08-09 02:45+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_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_invoice_line__discount2 +msgid "Discount 2 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_invoice_line__discount3 +msgid "Discount 3 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_invoice +msgid "Invoice" +msgstr "Faktur" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_invoice_line +msgid "Invoice Line" +msgstr "" diff --git a/account_invoice_triple_discount/i18n/it.po b/account_invoice_triple_discount/i18n/it.po new file mode 100644 index 00000000000..eaf2bc7f47b --- /dev/null +++ b/account_invoice_triple_discount/i18n/it.po @@ -0,0 +1,50 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_triple_discount +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-08-09 02:45+0000\n" +"PO-Revision-Date: 2021-12-03 12:37+0000\n" +"Last-Translator: Francesco Foresti \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" +"X-Generator: Weblate 4.3.2\n" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.invoice_triple_discount_form_view +msgid "Disc.2%" +msgstr "Sconto 2 (%)" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.invoice_triple_discount_form_view +msgid "Disc.3%" +msgstr "Sconto 3 (%)" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_invoice_line__discount2 +msgid "Discount 2 (%)" +msgstr "Sconto 2 (%)" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_invoice_line__discount3 +msgid "Discount 3 (%)" +msgstr "Sconto 3 (%)" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_invoice +msgid "Invoice" +msgstr "Fattura" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_invoice_line +msgid "Invoice Line" +msgstr "Righe Fattura" diff --git a/account_invoice_triple_discount/i18n/ja.po b/account_invoice_triple_discount/i18n/ja.po new file mode 100644 index 00000000000..c15b356e1df --- /dev/null +++ b/account_invoice_triple_discount/i18n/ja.po @@ -0,0 +1,39 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_triple_discount +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-08-09 02:45+0000\n" +"PO-Revision-Date: 2017-08-09 02:45+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_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_invoice_line__discount2 +msgid "Discount 2 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_invoice_line__discount3 +msgid "Discount 3 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_invoice +msgid "Invoice" +msgstr "請求書" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_invoice_line +msgid "Invoice Line" +msgstr "請求行" diff --git a/account_invoice_triple_discount/i18n/lt.po b/account_invoice_triple_discount/i18n/lt.po new file mode 100644 index 00000000000..88fe9753c2f --- /dev/null +++ b/account_invoice_triple_discount/i18n/lt.po @@ -0,0 +1,40 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_triple_discount +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-08-09 02:45+0000\n" +"PO-Revision-Date: 2017-08-09 02:45+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_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_invoice_line__discount2 +msgid "Discount 2 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_invoice_line__discount3 +msgid "Discount 3 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_invoice +msgid "Invoice" +msgstr "Sąskaita faktūra" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_invoice_line +msgid "Invoice Line" +msgstr "Sąskaitos faktūros eilutė" diff --git a/account_invoice_triple_discount/i18n/mk.po b/account_invoice_triple_discount/i18n/mk.po new file mode 100644 index 00000000000..32c2243cf8b --- /dev/null +++ b/account_invoice_triple_discount/i18n/mk.po @@ -0,0 +1,39 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_triple_discount +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-08-09 02:45+0000\n" +"PO-Revision-Date: 2017-08-09 02:45+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_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_invoice_line__discount2 +msgid "Discount 2 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_invoice_line__discount3 +msgid "Discount 3 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_invoice +msgid "Invoice" +msgstr "Фактура" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_invoice_line +msgid "Invoice Line" +msgstr "Ставка од фактура" diff --git a/account_invoice_triple_discount/i18n/mn.po b/account_invoice_triple_discount/i18n/mn.po new file mode 100644 index 00000000000..a654c412e3b --- /dev/null +++ b/account_invoice_triple_discount/i18n/mn.po @@ -0,0 +1,39 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_triple_discount +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-08-09 02:45+0000\n" +"PO-Revision-Date: 2017-08-09 02:45+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_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_invoice_line__discount2 +msgid "Discount 2 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_invoice_line__discount3 +msgid "Discount 3 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_invoice +msgid "Invoice" +msgstr "Нэхэмжлэл" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_invoice_line +msgid "Invoice Line" +msgstr "Нэхэмжлэлийн мөр" diff --git a/account_invoice_triple_discount/i18n/nb.po b/account_invoice_triple_discount/i18n/nb.po new file mode 100644 index 00000000000..24c26be4fa5 --- /dev/null +++ b/account_invoice_triple_discount/i18n/nb.po @@ -0,0 +1,40 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_triple_discount +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-08-09 02:45+0000\n" +"PO-Revision-Date: 2017-08-09 02:45+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_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_invoice_line__discount2 +msgid "Discount 2 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_invoice_line__discount3 +msgid "Discount 3 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_invoice +msgid "Invoice" +msgstr "Faktura" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_invoice_line +msgid "Invoice Line" +msgstr "Fakturalinje" diff --git a/account_invoice_triple_discount/i18n/nb_NO.po b/account_invoice_triple_discount/i18n/nb_NO.po new file mode 100644 index 00000000000..6d43eda4fbe --- /dev/null +++ b/account_invoice_triple_discount/i18n/nb_NO.po @@ -0,0 +1,40 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_triple_discount +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-08-09 02:45+0000\n" +"PO-Revision-Date: 2017-08-09 02:45+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_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_invoice_line__discount2 +msgid "Discount 2 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_invoice_line__discount3 +msgid "Discount 3 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_invoice +msgid "Invoice" +msgstr "Innmelding" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_invoice_line +msgid "Invoice Line" +msgstr "" diff --git a/account_invoice_triple_discount/i18n/nl.po b/account_invoice_triple_discount/i18n/nl.po new file mode 100644 index 00000000000..db9738979e8 --- /dev/null +++ b/account_invoice_triple_discount/i18n/nl.po @@ -0,0 +1,39 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_triple_discount +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-08-09 02:45+0000\n" +"PO-Revision-Date: 2017-08-09 02:45+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Dutch (https://www.transifex.com/oca/teams/23907/nl/)\n" +"Language: nl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_invoice_line__discount2 +msgid "Discount 2 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_invoice_line__discount3 +msgid "Discount 3 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_invoice +msgid "Invoice" +msgstr "Factuur" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_invoice_line +msgid "Invoice Line" +msgstr "Factuurregel" diff --git a/account_invoice_triple_discount/i18n/nl_BE.po b/account_invoice_triple_discount/i18n/nl_BE.po new file mode 100644 index 00000000000..d175b56dc3d --- /dev/null +++ b/account_invoice_triple_discount/i18n/nl_BE.po @@ -0,0 +1,40 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_triple_discount +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-08-09 02:45+0000\n" +"PO-Revision-Date: 2017-08-09 02:45+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_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_invoice_line__discount2 +msgid "Discount 2 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_invoice_line__discount3 +msgid "Discount 3 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_invoice +msgid "Invoice" +msgstr "Factuur" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_invoice_line +msgid "Invoice Line" +msgstr "Factuurlijn" diff --git a/account_invoice_triple_discount/i18n/nl_NL.po b/account_invoice_triple_discount/i18n/nl_NL.po new file mode 100644 index 00000000000..2cb44efc415 --- /dev/null +++ b/account_invoice_triple_discount/i18n/nl_NL.po @@ -0,0 +1,40 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_triple_discount +# +# Translators: +# Peter Hageman , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-08-09 02:45+0000\n" +"PO-Revision-Date: 2017-08-09 02:45+0000\n" +"Last-Translator: Peter Hageman , 2017\n" +"Language-Team: Dutch (Netherlands) (https://www.transifex.com/oca/" +"teams/23907/nl_NL/)\n" +"Language: nl_NL\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_invoice_line__discount2 +msgid "Discount 2 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_invoice_line__discount3 +msgid "Discount 3 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_invoice +msgid "Invoice" +msgstr "Factuur" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_invoice_line +msgid "Invoice Line" +msgstr "Factuurregel" diff --git a/account_invoice_triple_discount/i18n/pl.po b/account_invoice_triple_discount/i18n/pl.po new file mode 100644 index 00000000000..19a13a005c8 --- /dev/null +++ b/account_invoice_triple_discount/i18n/pl.po @@ -0,0 +1,41 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_triple_discount +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-08-09 02:45+0000\n" +"PO-Revision-Date: 2017-08-09 02:45+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_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_invoice_line__discount2 +msgid "Discount 2 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_invoice_line__discount3 +msgid "Discount 3 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_invoice +msgid "Invoice" +msgstr "Faktura" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_invoice_line +msgid "Invoice Line" +msgstr "" diff --git a/account_invoice_triple_discount/i18n/pt.po b/account_invoice_triple_discount/i18n/pt.po new file mode 100644 index 00000000000..1b7a9abd005 --- /dev/null +++ b/account_invoice_triple_discount/i18n/pt.po @@ -0,0 +1,39 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_triple_discount +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-08-09 02:45+0000\n" +"PO-Revision-Date: 2017-08-09 02:45+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_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_invoice_line__discount2 +msgid "Discount 2 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_invoice_line__discount3 +msgid "Discount 3 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_invoice +msgid "Invoice" +msgstr "Fatura" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_invoice_line +msgid "Invoice Line" +msgstr "Linha de fatura" diff --git a/account_invoice_triple_discount/i18n/pt_BR.po b/account_invoice_triple_discount/i18n/pt_BR.po new file mode 100644 index 00000000000..7ed7fa80eef --- /dev/null +++ b/account_invoice_triple_discount/i18n/pt_BR.po @@ -0,0 +1,51 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_triple_discount +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-08-09 02:45+0000\n" +"PO-Revision-Date: 2019-09-03 16:23+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_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.invoice_triple_discount_form_view +msgid "Disc.2%" +msgstr "Desconto 2 (%)" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.invoice_triple_discount_form_view +msgid "Disc.3%" +msgstr "Desconto 3 (%)" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_invoice_line__discount2 +msgid "Discount 2 (%)" +msgstr "Desconto 2 (%)" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_invoice_line__discount3 +msgid "Discount 3 (%)" +msgstr "Desconto 3 (%)" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_invoice +msgid "Invoice" +msgstr "Fatura" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_invoice_line +msgid "Invoice Line" +msgstr "Linha da Fatura" diff --git a/account_invoice_triple_discount/i18n/pt_PT.po b/account_invoice_triple_discount/i18n/pt_PT.po new file mode 100644 index 00000000000..ecf26ee0aa9 --- /dev/null +++ b/account_invoice_triple_discount/i18n/pt_PT.po @@ -0,0 +1,40 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_triple_discount +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-08-09 02:45+0000\n" +"PO-Revision-Date: 2017-08-09 02:45+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_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_invoice_line__discount2 +msgid "Discount 2 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_invoice_line__discount3 +msgid "Discount 3 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_invoice +msgid "Invoice" +msgstr "Fatura" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_invoice_line +msgid "Invoice Line" +msgstr "Linha da Fatura" diff --git a/account_invoice_triple_discount/i18n/ro.po b/account_invoice_triple_discount/i18n/ro.po new file mode 100644 index 00000000000..0e5d8b28022 --- /dev/null +++ b/account_invoice_triple_discount/i18n/ro.po @@ -0,0 +1,40 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_triple_discount +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-08-09 02:45+0000\n" +"PO-Revision-Date: 2017-08-09 02:45+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_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_invoice_line__discount2 +msgid "Discount 2 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_invoice_line__discount3 +msgid "Discount 3 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_invoice +msgid "Invoice" +msgstr "Factura" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_invoice_line +msgid "Invoice Line" +msgstr "Linie factura" diff --git a/account_invoice_triple_discount/i18n/ru.po b/account_invoice_triple_discount/i18n/ru.po new file mode 100644 index 00000000000..3ea12f4fca6 --- /dev/null +++ b/account_invoice_triple_discount/i18n/ru.po @@ -0,0 +1,52 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_triple_discount +# +# Translators: +# OCA Transbot , 2017 +# nek, 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-03-17 01:09+0000\n" +"PO-Revision-Date: 2018-03-17 01:09+0000\n" +"Last-Translator: nek, 2018\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_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.invoice_triple_discount_form_view +msgid "Disc.2%" +msgstr "Скидка 2 (%)" + +#. module: account_invoice_triple_discount +#: model_terms:ir.ui.view,arch_db:account_invoice_triple_discount.invoice_triple_discount_form_view +msgid "Disc.3%" +msgstr "Скидка 3 (%)" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_invoice_line__discount2 +msgid "Discount 2 (%)" +msgstr "Скидка 2 (%)" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_invoice_line__discount3 +msgid "Discount 3 (%)" +msgstr "Скидка 3 (%)" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_invoice +msgid "Invoice" +msgstr "Счет" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_invoice_line +msgid "Invoice Line" +msgstr "Позиция счета" diff --git a/account_invoice_triple_discount/i18n/sk_SK.po b/account_invoice_triple_discount/i18n/sk_SK.po new file mode 100644 index 00000000000..042e5027cda --- /dev/null +++ b/account_invoice_triple_discount/i18n/sk_SK.po @@ -0,0 +1,40 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_triple_discount +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-08-09 02:45+0000\n" +"PO-Revision-Date: 2017-08-09 02:45+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_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_invoice_line__discount2 +msgid "Discount 2 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_invoice_line__discount3 +msgid "Discount 3 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_invoice +msgid "Invoice" +msgstr "Faktúra" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_invoice_line +msgid "Invoice Line" +msgstr "" diff --git a/account_invoice_triple_discount/i18n/sl.po b/account_invoice_triple_discount/i18n/sl.po new file mode 100644 index 00000000000..e06f4662051 --- /dev/null +++ b/account_invoice_triple_discount/i18n/sl.po @@ -0,0 +1,40 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_triple_discount +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-08-09 02:45+0000\n" +"PO-Revision-Date: 2017-08-09 02:45+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_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_invoice_line__discount2 +msgid "Discount 2 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_invoice_line__discount3 +msgid "Discount 3 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_invoice +msgid "Invoice" +msgstr "Račun" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_invoice_line +msgid "Invoice Line" +msgstr "Postavka računa" diff --git a/account_invoice_triple_discount/i18n/sv.po b/account_invoice_triple_discount/i18n/sv.po new file mode 100644 index 00000000000..e608ace8d9f --- /dev/null +++ b/account_invoice_triple_discount/i18n/sv.po @@ -0,0 +1,39 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_triple_discount +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-08-09 02:45+0000\n" +"PO-Revision-Date: 2017-08-09 02:45+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_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_invoice_line__discount2 +msgid "Discount 2 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_invoice_line__discount3 +msgid "Discount 3 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_invoice +msgid "Invoice" +msgstr "Faktura" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_invoice_line +msgid "Invoice Line" +msgstr "Fakturarad" diff --git a/account_invoice_triple_discount/i18n/th.po b/account_invoice_triple_discount/i18n/th.po new file mode 100644 index 00000000000..b84e85df985 --- /dev/null +++ b/account_invoice_triple_discount/i18n/th.po @@ -0,0 +1,39 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_triple_discount +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-08-09 02:45+0000\n" +"PO-Revision-Date: 2017-08-09 02:45+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_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_invoice_line__discount2 +msgid "Discount 2 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_invoice_line__discount3 +msgid "Discount 3 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_invoice +msgid "Invoice" +msgstr "ใบแจ้งหนี้" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_invoice_line +msgid "Invoice Line" +msgstr "" diff --git a/account_invoice_triple_discount/i18n/tr.po b/account_invoice_triple_discount/i18n/tr.po new file mode 100644 index 00000000000..36acb076609 --- /dev/null +++ b/account_invoice_triple_discount/i18n/tr.po @@ -0,0 +1,39 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_triple_discount +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-08-09 02:45+0000\n" +"PO-Revision-Date: 2017-08-09 02:45+0000\n" +"Last-Translator: OCA Transbot , 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_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_invoice_line__discount2 +msgid "Discount 2 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_invoice_line__discount3 +msgid "Discount 3 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_invoice +msgid "Invoice" +msgstr "Fatura" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_invoice_line +msgid "Invoice Line" +msgstr "Fatura kalemi" diff --git a/account_invoice_triple_discount/i18n/tr_TR.po b/account_invoice_triple_discount/i18n/tr_TR.po new file mode 100644 index 00000000000..f2cabafd73b --- /dev/null +++ b/account_invoice_triple_discount/i18n/tr_TR.po @@ -0,0 +1,40 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_triple_discount +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-08-09 02:45+0000\n" +"PO-Revision-Date: 2017-08-09 02:45+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_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_invoice_line__discount2 +msgid "Discount 2 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_invoice_line__discount3 +msgid "Discount 3 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_invoice +msgid "Invoice" +msgstr "Fatura" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_invoice_line +msgid "Invoice Line" +msgstr "Fatura hizası" diff --git a/account_invoice_triple_discount/i18n/zh_CN.po b/account_invoice_triple_discount/i18n/zh_CN.po new file mode 100644 index 00000000000..ef3e84a4296 --- /dev/null +++ b/account_invoice_triple_discount/i18n/zh_CN.po @@ -0,0 +1,41 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_triple_discount +# +# Translators: +# OCA Transbot , 2017 +# 三 张 <731414193@qq.com>, 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-08-09 02:45+0000\n" +"PO-Revision-Date: 2017-08-09 02:45+0000\n" +"Last-Translator: 三 张 <731414193@qq.com>, 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_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_invoice_line__discount2 +msgid "Discount 2 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_invoice_line__discount3 +msgid "Discount 3 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_invoice +msgid "Invoice" +msgstr "发票" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_invoice_line +msgid "Invoice Line" +msgstr "发票明细" diff --git a/account_invoice_triple_discount/i18n/zh_TW.po b/account_invoice_triple_discount/i18n/zh_TW.po new file mode 100644 index 00000000000..7c6055e16f8 --- /dev/null +++ b/account_invoice_triple_discount/i18n/zh_TW.po @@ -0,0 +1,40 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_triple_discount +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-08-09 02:45+0000\n" +"PO-Revision-Date: 2017-08-09 02:45+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_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_invoice_line__discount2 +msgid "Discount 2 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_invoice_line__discount3 +msgid "Discount 3 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_invoice +msgid "Invoice" +msgstr "發票" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_invoice_line +msgid "Invoice Line" +msgstr "發票明細" diff --git a/account_invoice_triple_discount/models/__init__.py b/account_invoice_triple_discount/models/__init__.py new file mode 100644 index 00000000000..8795b3bea64 --- /dev/null +++ b/account_invoice_triple_discount/models/__init__.py @@ -0,0 +1 @@ +from . import account_move_line diff --git a/account_invoice_triple_discount/models/account_move_line.py b/account_invoice_triple_discount/models/account_move_line.py new file mode 100644 index 00000000000..b391e16f849 --- /dev/null +++ b/account_invoice_triple_discount/models/account_move_line.py @@ -0,0 +1,150 @@ +# Copyright 2020 ACSONE SA/NV +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + +import functools + +from odoo import api, fields, models +from odoo.tools import float_compare + + +class AccountMoveLine(models.Model): + + _inherit = "account.move.line" + + discount2 = fields.Float( + string="Discount 2 (%)", + digits="Discount", + ) + discount3 = fields.Float( + string="Discount 3 (%)", + digits="Discount", + ) + + @api.model_create_multi + def create(self, values_list): + """ + During the create of move lines, if the system detect that there is a + difference between the balance and the price subtotal, it will update + the unit price. When computing those, Odoo base module use a single + discount on creation. So as there is a difference of the price given + by the UI and the price computed during create method, the system will + change the unit price of the invoice line. To avoid that, we update + the discount field to have the aggregated discount, and we change it + back after the creation. + (Similar to _recompute_tax_lines on account.move) + """ + old_values = [] + dp_discount = self.env["decimal.precision"].precision_get("Discount") + for values in values_list: + old_discount = values.get("discount", 0.0) + new_discount = self._get_aggregated_discount_from_values(values) + tmp_values = {} + discount_changed = ( + float_compare(old_discount, new_discount, precision_digits=dp_discount) + != 0 + ) + if discount_changed: + values["discount"] = new_discount + tmp_values["discount"] = old_discount + old_values.append(tmp_values) + records = super().create(values_list) + for index, record in enumerate(records): + values = old_values[index] + if values: + record.write(old_values[index]) + return records + + @api.depends( + "quantity", + "discount", + "price_unit", + "tax_ids", + "currency_id", + "discount2", + "discount3", + ) + def _compute_totals(self): + """ + As the totals are recalculated based on a single discount, we need to + simulate a multiple discount by changing the discount value. Values are + restored after the original process is done + """ + old_values_by_line_id = {} + digits = self._fields["discount"]._digits + self._fields["discount"]._digits = (16, 16) + for line in self: + aggregated_discount = line._compute_aggregated_discount(line.discount) + old_values_by_line_id[line.id] = {"discount": line.discount} + line.update({"discount": aggregated_discount}) + res = super()._compute_totals() + self._fields["discount"]._digits = digits + for line in self: + if line.id not in old_values_by_line_id: + continue + line.update(old_values_by_line_id[line.id]) + return res + + @api.depends( + "tax_ids", + "currency_id", + "partner_id", + "analytic_distribution", + "balance", + "partner_id", + "move_id.partner_id", + "price_unit", + "discount2", + "discount3", + ) + def _compute_all_tax(self): + """ + As the taxes are recalculated based on a single discount, we need to + simulate a multiple discount by changing discount value. Values are + restored after the original process is done + """ + digits = self._fields["discount"]._digits + self._fields["discount"]._digits = (16, 16) + old_values_by_line_id = {} + for line in self: + aggregated_discount = line._compute_aggregated_discount(line.discount) + old_values_by_line_id[line.id] = {"discount": line.discount} + line.update({"discount": aggregated_discount}) + res = super()._compute_all_tax() + self._fields["discount"]._digits = digits + for line in self: + if line.id not in old_values_by_line_id: + continue + line.update(old_values_by_line_id[line.id]) + return res + + def _convert_to_tax_base_line_dict(self): + res = super()._convert_to_tax_base_line_dict() + res["discount"] = self._compute_aggregated_discount(res["discount"]) + return res + + def _compute_aggregated_discount(self, base_discount): + self.ensure_one() + discounts = [base_discount] + for discount_fname in self._get_multiple_discount_field_names(): + discounts.append(getattr(self, discount_fname, 0.0)) + return self._get_aggregated_multiple_discounts(discounts) + + def _get_aggregated_discount_from_values(self, values): + discount_fnames = ["discount"] + discount_fnames.extend(self._get_multiple_discount_field_names()) + discounts = [] + for discount_fname in discount_fnames: + discounts.append(values.get(discount_fname) or 0.0) + return self._get_aggregated_multiple_discounts(discounts) + + def _get_aggregated_multiple_discounts(self, discounts): + discount_values = [] + for discount in discounts: + discount_values.append(1 - (discount or 0.0) / 100.0) + aggregated_discount = ( + 1 - functools.reduce((lambda x, y: x * y), discount_values) + ) * 100 + return aggregated_discount + + def _get_multiple_discount_field_names(self): + return ["discount2", "discount3"] diff --git a/account_invoice_triple_discount/readme/CONTRIBUTORS.rst b/account_invoice_triple_discount/readme/CONTRIBUTORS.rst new file mode 100644 index 00000000000..6f532df62ef --- /dev/null +++ b/account_invoice_triple_discount/readme/CONTRIBUTORS.rst @@ -0,0 +1,3 @@ +* David Vidal +* Pedro M. Baeza +* Nikul Chaudhary diff --git a/account_invoice_triple_discount/readme/DESCRIPTION.rst b/account_invoice_triple_discount/readme/DESCRIPTION.rst new file mode 100644 index 00000000000..d61e4eee1fd --- /dev/null +++ b/account_invoice_triple_discount/readme/DESCRIPTION.rst @@ -0,0 +1 @@ +This module allows to have three successive discounts on each invoice line. diff --git a/account_invoice_triple_discount/readme/USAGE.rst b/account_invoice_triple_discount/readme/USAGE.rst new file mode 100644 index 00000000000..f31899c552c --- /dev/null +++ b/account_invoice_triple_discount/readme/USAGE.rst @@ -0,0 +1,17 @@ +Create a new invoice and add discounts in any of the three discount fields +given. They go in order of precedence so discount 2 will be calculated over +discount 1 and discount 3 over the result of discount 2. For example, let's +divide by two on every discount: + +Unit price: 600.00 -> + + - Disc. 1 = 50% -> Amount = 300.00 + - Disc. 2 = 50% -> Amount = 150.00 + - Disc. 3 = 50% -> Amount = 75.00 + +You can also use negative values to charge instead of discount: + +Unit price: 600.00 -> + + - Disc. 1 = 50% -> Amount = 300.00 + - Disc. 2 = -5% -> Amount = 315.00 diff --git a/account_invoice_triple_discount/report/invoice.xml b/account_invoice_triple_discount/report/invoice.xml new file mode 100644 index 00000000000..dceb1060f13 --- /dev/null +++ b/account_invoice_triple_discount/report/invoice.xml @@ -0,0 +1,40 @@ + + + + diff --git a/account_invoice_triple_discount/static/description/icon.png b/account_invoice_triple_discount/static/description/icon.png new file mode 100644 index 00000000000..3a0328b516c Binary files /dev/null and b/account_invoice_triple_discount/static/description/icon.png differ diff --git a/account_invoice_triple_discount/static/description/index.html b/account_invoice_triple_discount/static/description/index.html new file mode 100644 index 00000000000..c4cd700f438 --- /dev/null +++ b/account_invoice_triple_discount/static/description/index.html @@ -0,0 +1,446 @@ + + + + + + +Account Invoice Triple Discount + + + +
+

Account Invoice Triple Discount

+ + +

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

+

This module allows to have three successive discounts on each invoice line.

+

Table of contents

+ +
+

Usage

+

Create a new invoice and add discounts in any of the three discount fields +given. They go in order of precedence so discount 2 will be calculated over +discount 1 and discount 3 over the result of discount 2. For example, let’s +divide by two on every discount:

+

Unit price: 600.00 ->

+
+
    +
  • Disc. 1 = 50% -> Amount = 300.00
  • +
  • Disc. 2 = 50% -> Amount = 150.00
  • +
  • Disc. 3 = 50% -> Amount = 75.00
  • +
+
+

You can also use negative values to charge instead of discount:

+

Unit price: 600.00 ->

+
+
    +
  • Disc. 1 = 50% -> Amount = 300.00
  • +
  • Disc. 2 = -5% -> Amount = 315.00
  • +
+
+
+
+

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

+
    +
  • QubiQ
  • +
  • Tecnativa
  • +
+
+
+

Contributors

+ +
+
+

Maintainers

+

This module is maintained by the OCA.

+Odoo Community Association +

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

+

This module is part of the OCA/account-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_triple_discount/tests/__init__.py b/account_invoice_triple_discount/tests/__init__.py new file mode 100644 index 00000000000..354de278b79 --- /dev/null +++ b/account_invoice_triple_discount/tests/__init__.py @@ -0,0 +1,3 @@ +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + +from . import test_invoice_triple_discount diff --git a/account_invoice_triple_discount/tests/test_invoice_triple_discount.py b/account_invoice_triple_discount/tests/test_invoice_triple_discount.py new file mode 100644 index 00000000000..7f672107d23 --- /dev/null +++ b/account_invoice_triple_discount/tests/test_invoice_triple_discount.py @@ -0,0 +1,164 @@ +# Copyright 2017 Tecnativa - David Vidal +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + +from odoo.tests import TransactionCase +from odoo.tests.common import Form + + +class TestInvoiceTripleDiscount(TransactionCase): + @classmethod + def setUpClass(cls): + super(TestInvoiceTripleDiscount, cls).setUpClass() + cls.env.user.groups_id += cls.env.ref("product.group_discount_per_so_line") + cls.Account = cls.env["account.account"] + cls.AccountMove = cls.env["account.move"] + cls.AccountTax = cls.env["account.tax"] + cls.Partner = cls.env["res.partner"] + cls.Journal = cls.env["account.journal"] + + cls.partner = cls.Partner.create({"name": "test"}) + cls.tax = cls.AccountTax.create( + { + "name": "TAX 15%", + "amount_type": "percent", + "type_tax_use": "purchase", + "amount": 15.0, + "country_id": cls.env.ref("base.us").id, + } + ) + cls.account = cls.Account.create( + { + "name": "Test account", + "code": "TEST", + "account_type": "asset_receivable", + "reconcile": True, + } + ) + cls.sale_journal = cls.Journal.search([("type", "=", "sale")], limit=1) + + def create_simple_invoice(self, amount): + invoice_form = Form( + self.AccountMove.with_context( + default_move_type="out_invoice", + default_journal_id=self.sale_journal.id, + ) + ) + invoice_form.partner_id = self.partner + + with invoice_form.invoice_line_ids.new() as line_form: + line_form.name = "Line 1" + line_form.quantity = 1 + line_form.price_unit = amount + line_form.tax_ids.clear() + line_form.tax_ids.add(self.tax) + + invoice = invoice_form.save() + return invoice + + def test_01_discounts(self): + """Tests multiple discounts in line with taxes""" + invoice = self.create_simple_invoice(200) + + invoice_form = Form(invoice) + with invoice_form.invoice_line_ids.edit(0) as line_form: + line_form.discount = 50.0 + invoice_form.save() + + invoice_line = invoice.invoice_line_ids[0] + + # Adds a first discount + self.assertEqual(invoice.amount_total, 115.0) + + # Adds a second discount over the price calculated before + with invoice_form.invoice_line_ids.edit(0) as line_form: + line_form.discount2 = 40.0 + invoice_form.save() + self.assertEqual(invoice.amount_total, 69.0) + + # Adds a third discount over the price calculated before + with invoice_form.invoice_line_ids.edit(0) as line_form: + line_form.discount3 = 50.0 + invoice_form.save() + self.assertEqual(invoice.amount_total, 34.5) + + # Deletes first discount + with invoice_form.invoice_line_ids.edit(0) as line_form: + line_form.discount = 0 + invoice_form.save() + self.assertEqual(invoice.amount_total, 69) + + # Charge 5% over price: + with invoice_form.invoice_line_ids.edit(0) as line_form: + line_form.discount = -5 + invoice_form.save() + self.assertEqual(invoice.amount_total, 72.45) + + self.assertEqual(invoice_line.price_unit, 200) + + def test_02_discounts_multiple_lines(self): + invoice = self.create_simple_invoice(200) + invoice_form = Form(invoice) + with invoice_form.invoice_line_ids.new() as line_form: + line_form.name = "Line 2" + line_form.quantity = 1 + line_form.price_unit = 500 + line_form.tax_ids.clear() + invoice_form.save() + + invoice_line2 = invoice.invoice_line_ids[1] + self.assertEqual(invoice_line2.price_subtotal, 500.0) + + with invoice_form.invoice_line_ids.edit(1) as line_form: + line_form.discount3 = 50.0 + invoice_form.save() + self.assertEqual(invoice.amount_total, 480.0) + + with invoice_form.invoice_line_ids.edit(0) as line_form: + line_form.discount = 50.0 + invoice_form.save() + self.assertEqual(invoice.amount_total, 365.0) + + def test_03_discounts_decimals_price(self): + """ + Tests discount with decimals price + causing a round up after discount + """ + invoice = self.create_simple_invoice(0) + invoice_form = Form(invoice) + with invoice_form.invoice_line_ids.edit(0) as line_form: + line_form.name = "Line Decimals" + line_form.quantity = 9950 + line_form.price_unit = 0.14 + line_form.tax_ids.clear() + invoice_form.save() + + invoice_line1 = invoice.invoice_line_ids[0] + + self.assertEqual(invoice_line1.price_subtotal, 1393.0) + + with invoice_form.invoice_line_ids.edit(0) as line_form: + line_form.discount = 15.0 + invoice_form.save() + + self.assertEqual(invoice_line1.price_subtotal, 1184.05) + + def test_04_discounts_decimals_tax(self): + """ + Tests amount tax with discount + """ + invoice = self.create_simple_invoice(0) + invoice_form = Form(invoice) + with invoice_form.invoice_line_ids.edit(0) as line_form: + line_form.name = "Line Decimals" + line_form.quantity = 9950 + line_form.price_unit = 0.14 + line_form.discount = 0 + line_form.discount2 = 0 + invoice_form.save() + + self.assertEqual(invoice.amount_tax, 208.95) + with invoice_form.invoice_line_ids.edit(0) as line_form: + line_form.discount = 15.0 + invoice_form.save() + + self.assertEqual(invoice.amount_tax, 177.61) diff --git a/account_invoice_triple_discount/views/account_move.xml b/account_invoice_triple_discount/views/account_move.xml new file mode 100644 index 00000000000..c57fa78a30b --- /dev/null +++ b/account_invoice_triple_discount/views/account_move.xml @@ -0,0 +1,24 @@ + + + + account.invoice.triple.discount.form + account.move + + + + + + + + + + + + + diff --git a/setup/account_invoice_triple_discount/odoo/addons/account_invoice_triple_discount b/setup/account_invoice_triple_discount/odoo/addons/account_invoice_triple_discount new file mode 120000 index 00000000000..be564ad9fc4 --- /dev/null +++ b/setup/account_invoice_triple_discount/odoo/addons/account_invoice_triple_discount @@ -0,0 +1 @@ +../../../../account_invoice_triple_discount \ No newline at end of file diff --git a/setup/account_invoice_triple_discount/setup.py b/setup/account_invoice_triple_discount/setup.py new file mode 100644 index 00000000000..28c57bb6403 --- /dev/null +++ b/setup/account_invoice_triple_discount/setup.py @@ -0,0 +1,6 @@ +import setuptools + +setuptools.setup( + setup_requires=['setuptools-odoo'], + odoo_addon=True, +)