diff --git a/account_invoice_view_payment/README.rst b/account_invoice_view_payment/README.rst new file mode 100644 index 00000000000..858d4fd3814 --- /dev/null +++ b/account_invoice_view_payment/README.rst @@ -0,0 +1,105 @@ +============================ +Account Invoice View Payment +============================ + +.. + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! This file is generated by oca-gen-addon-readme !! + !! changes will be overwritten. !! + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! source digest: sha256:0cca4874ac9c8da20233b28a13917e68e208348a2a0575f94b7bf241aa5bcea2 + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + +.. |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/16.0/account_invoice_view_payment + :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-16-0/account-invoicing-16-0-account_invoice_view_payment + :alt: Translate me on Weblate +.. |badge5| image:: https://img.shields.io/badge/runboat-Try%20me-875A7B.png + :target: https://runboat.odoo-community.org/builds?repo=OCA/account-invoicing&target_branch=16.0 + :alt: Try me on Runboat + +|badge1| |badge2| |badge3| |badge4| |badge5| + +This module allows users to access directly to the payment from an invoice +when registering a payment or afterwards. + +The option to open the payment when it's being registered is useful +when the user needs to do a follow-up step on the payment, such as printing +the associated check. + +**Table of contents** + +.. contents:: + :local: + +Configuration +============= + +Only users assigned to the group "Billing" can display the payments from the +invoice. + +Usage +===== + +Registering a payment + +#. Go to an open customer invoice or vendor bill and press 'Register Payment'. +#. The button "Create Payment" will take care of validating the payment. + +After payment has been made + +#. Go to an open customer invoice or vendor bill and press the link + 'View Payments' that appears next to the list of payments made for that + invoice. + +Bug Tracker +=========== + +Bugs are tracked on `GitHub Issues `_. +In case of trouble, please check there if your issue has already been reported. +If you spotted it first, help us to smash it by providing a detailed and welcomed +`feedback `_. + +Do not contact contributors directly about support or help with technical issues. + +Credits +======= + +Authors +~~~~~~~ + +* ForgeFlow + +Contributors +~~~~~~~~~~~~ + +* Jordi Ballester +* Miquel Raïch +* Achraf Mhadhbi +* Rattapong Chokmasermkul +* Juany Davila + +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_view_payment/__init__.py b/account_invoice_view_payment/__init__.py new file mode 100644 index 00000000000..8ebc8a7c5e7 --- /dev/null +++ b/account_invoice_view_payment/__init__.py @@ -0,0 +1,3 @@ +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html) + +from . import models diff --git a/account_invoice_view_payment/__manifest__.py b/account_invoice_view_payment/__manifest__.py new file mode 100644 index 00000000000..c43f059fc6a --- /dev/null +++ b/account_invoice_view_payment/__manifest__.py @@ -0,0 +1,16 @@ +# Copyright 2017 ForgeFlow S.L. +# (https://www.forgeflow.com) +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html) + +{ + "name": "Account Invoice View Payment", + "summary": "Access to the payment from an invoice", + "version": "16.0.1.0.0", + "license": "AGPL-3", + "website": "https://github.com/OCA/account-invoicing", + "author": "ForgeFlow, " "Odoo Community Association (OCA)", + "category": "Accounting", + "depends": ["account"], + "data": ["views/account_payment_view.xml", "views/account_move_view.xml"], + "installable": True, +} diff --git a/account_invoice_view_payment/i18n/account_invoice_view_payment.pot b/account_invoice_view_payment/i18n/account_invoice_view_payment.pot new file mode 100644 index 00000000000..fd023012744 --- /dev/null +++ b/account_invoice_view_payment/i18n/account_invoice_view_payment.pot @@ -0,0 +1,36 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_view_payment +# +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_view_payment +#: model:ir.model,name:account_invoice_view_payment.model_account_move +msgid "Journal Entry" +msgstr "" + +#. module: account_invoice_view_payment +#: code:addons/account_invoice_view_payment/models/account_payment.py:0 +#: model:ir.model,name:account_invoice_view_payment.model_account_payment +#, python-format +msgid "Payments" +msgstr "" + +#. module: account_invoice_view_payment +#: model_terms:ir.ui.view,arch_db:account_invoice_view_payment.view_account_payment_invoice_form +msgid "Validate & View Payment" +msgstr "" + +#. module: account_invoice_view_payment +#: model_terms:ir.ui.view,arch_db:account_invoice_view_payment.view_move_form +msgid "View Payments" +msgstr "" diff --git a/account_invoice_view_payment/i18n/ar.po b/account_invoice_view_payment/i18n/ar.po new file mode 100644 index 00000000000..c72d63b39db --- /dev/null +++ b/account_invoice_view_payment/i18n/ar.po @@ -0,0 +1,45 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_view_payment +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-11-23 13:51+0000\n" +"PO-Revision-Date: 2017-11-23 13:51+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: 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_view_payment +#: model:ir.model,name:account_invoice_view_payment.model_account_move +msgid "Journal Entry" +msgstr "" + +#. module: account_invoice_view_payment +#: code:addons/account_invoice_view_payment/models/account_payment.py:0 +#: model:ir.model,name:account_invoice_view_payment.model_account_payment +#, python-format +msgid "Payments" +msgstr "" + +#. module: account_invoice_view_payment +#: model_terms:ir.ui.view,arch_db:account_invoice_view_payment.view_account_payment_invoice_form +msgid "Validate & View Payment" +msgstr "" + +#. module: account_invoice_view_payment +#: model_terms:ir.ui.view,arch_db:account_invoice_view_payment.view_move_form +msgid "View Payments" +msgstr "" + +#~ msgid "Invoice" +#~ msgstr "فاتورة" diff --git a/account_invoice_view_payment/i18n/bg.po b/account_invoice_view_payment/i18n/bg.po new file mode 100644 index 00000000000..886aa38eb19 --- /dev/null +++ b/account_invoice_view_payment/i18n/bg.po @@ -0,0 +1,44 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_view_payment +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-11-23 13:51+0000\n" +"PO-Revision-Date: 2017-11-23 13:51+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: 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_view_payment +#: model:ir.model,name:account_invoice_view_payment.model_account_move +msgid "Journal Entry" +msgstr "" + +#. module: account_invoice_view_payment +#: code:addons/account_invoice_view_payment/models/account_payment.py:0 +#: model:ir.model,name:account_invoice_view_payment.model_account_payment +#, python-format +msgid "Payments" +msgstr "" + +#. module: account_invoice_view_payment +#: model_terms:ir.ui.view,arch_db:account_invoice_view_payment.view_account_payment_invoice_form +msgid "Validate & View Payment" +msgstr "" + +#. module: account_invoice_view_payment +#: model_terms:ir.ui.view,arch_db:account_invoice_view_payment.view_move_form +msgid "View Payments" +msgstr "" + +#~ msgid "Invoice" +#~ msgstr "Фактура" diff --git a/account_invoice_view_payment/i18n/bs.po b/account_invoice_view_payment/i18n/bs.po new file mode 100644 index 00000000000..f3b9da16573 --- /dev/null +++ b/account_invoice_view_payment/i18n/bs.po @@ -0,0 +1,45 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_view_payment +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-11-23 13:51+0000\n" +"PO-Revision-Date: 2017-11-23 13:51+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: 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_view_payment +#: model:ir.model,name:account_invoice_view_payment.model_account_move +msgid "Journal Entry" +msgstr "" + +#. module: account_invoice_view_payment +#: code:addons/account_invoice_view_payment/models/account_payment.py:0 +#: model:ir.model,name:account_invoice_view_payment.model_account_payment +#, python-format +msgid "Payments" +msgstr "" + +#. module: account_invoice_view_payment +#: model_terms:ir.ui.view,arch_db:account_invoice_view_payment.view_account_payment_invoice_form +msgid "Validate & View Payment" +msgstr "" + +#. module: account_invoice_view_payment +#: model_terms:ir.ui.view,arch_db:account_invoice_view_payment.view_move_form +msgid "View Payments" +msgstr "" + +#~ msgid "Invoice" +#~ msgstr "Faktura" diff --git a/account_invoice_view_payment/i18n/ca.po b/account_invoice_view_payment/i18n/ca.po new file mode 100644 index 00000000000..1b85e9d9248 --- /dev/null +++ b/account_invoice_view_payment/i18n/ca.po @@ -0,0 +1,44 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_view_payment +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-11-23 13:51+0000\n" +"PO-Revision-Date: 2017-11-23 13:51+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Catalan (https://www.transifex.com/oca/teams/23907/ca/)\n" +"Language: ca\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_invoice_view_payment +#: model:ir.model,name:account_invoice_view_payment.model_account_move +msgid "Journal Entry" +msgstr "" + +#. module: account_invoice_view_payment +#: code:addons/account_invoice_view_payment/models/account_payment.py:0 +#: model:ir.model,name:account_invoice_view_payment.model_account_payment +#, python-format +msgid "Payments" +msgstr "" + +#. module: account_invoice_view_payment +#: model_terms:ir.ui.view,arch_db:account_invoice_view_payment.view_account_payment_invoice_form +msgid "Validate & View Payment" +msgstr "" + +#. module: account_invoice_view_payment +#: model_terms:ir.ui.view,arch_db:account_invoice_view_payment.view_move_form +msgid "View Payments" +msgstr "" + +#~ msgid "Invoice" +#~ msgstr "Factura" diff --git a/account_invoice_view_payment/i18n/cs.po b/account_invoice_view_payment/i18n/cs.po new file mode 100644 index 00000000000..8d555e3d83c --- /dev/null +++ b/account_invoice_view_payment/i18n/cs.po @@ -0,0 +1,44 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_view_payment +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-11-23 13:51+0000\n" +"PO-Revision-Date: 2017-11-23 13:51+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: 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_view_payment +#: model:ir.model,name:account_invoice_view_payment.model_account_move +msgid "Journal Entry" +msgstr "" + +#. module: account_invoice_view_payment +#: code:addons/account_invoice_view_payment/models/account_payment.py:0 +#: model:ir.model,name:account_invoice_view_payment.model_account_payment +#, python-format +msgid "Payments" +msgstr "" + +#. module: account_invoice_view_payment +#: model_terms:ir.ui.view,arch_db:account_invoice_view_payment.view_account_payment_invoice_form +msgid "Validate & View Payment" +msgstr "" + +#. module: account_invoice_view_payment +#: model_terms:ir.ui.view,arch_db:account_invoice_view_payment.view_move_form +msgid "View Payments" +msgstr "" + +#~ msgid "Invoice" +#~ msgstr "Faktura" diff --git a/account_invoice_view_payment/i18n/de.po b/account_invoice_view_payment/i18n/de.po new file mode 100644 index 00000000000..d1202c40376 --- /dev/null +++ b/account_invoice_view_payment/i18n/de.po @@ -0,0 +1,53 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_view_payment +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-11-23 13:51+0000\n" +"PO-Revision-Date: 2018-10-11 11:39+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_view_payment +#: model:ir.model,name:account_invoice_view_payment.model_account_move +msgid "Journal Entry" +msgstr "" + +#. module: account_invoice_view_payment +#: code:addons/account_invoice_view_payment/models/account_payment.py:0 +#: model:ir.model,name:account_invoice_view_payment.model_account_payment +#, python-format +msgid "Payments" +msgstr "Zahlungen" + +#. module: account_invoice_view_payment +#: model_terms:ir.ui.view,arch_db:account_invoice_view_payment.view_account_payment_invoice_form +msgid "Validate & View Payment" +msgstr "Zahlung bestätigen & ansehen" + +#. module: account_invoice_view_payment +#: model_terms:ir.ui.view,arch_db:account_invoice_view_payment.view_move_form +msgid "View Payments" +msgstr "Zahlungen ansehen" + +#~ msgid "Invoice" +#~ msgstr "Rechnung" + +#, fuzzy +#~| msgid "View Payments" +#~ msgid "Register Payments" +#~ msgstr "Zahlungen ansehen" + +#~ msgid "Register payments on multiple invoices" +#~ msgstr "Verbuche Zahlungen auf mehrere Rechnungen" diff --git a/account_invoice_view_payment/i18n/el_GR.po b/account_invoice_view_payment/i18n/el_GR.po new file mode 100644 index 00000000000..ae6778a12a8 --- /dev/null +++ b/account_invoice_view_payment/i18n/el_GR.po @@ -0,0 +1,45 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_view_payment +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-11-23 13:51+0000\n" +"PO-Revision-Date: 2017-11-23 13:51+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: 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_view_payment +#: model:ir.model,name:account_invoice_view_payment.model_account_move +msgid "Journal Entry" +msgstr "" + +#. module: account_invoice_view_payment +#: code:addons/account_invoice_view_payment/models/account_payment.py:0 +#: model:ir.model,name:account_invoice_view_payment.model_account_payment +#, python-format +msgid "Payments" +msgstr "" + +#. module: account_invoice_view_payment +#: model_terms:ir.ui.view,arch_db:account_invoice_view_payment.view_account_payment_invoice_form +msgid "Validate & View Payment" +msgstr "" + +#. module: account_invoice_view_payment +#: model_terms:ir.ui.view,arch_db:account_invoice_view_payment.view_move_form +msgid "View Payments" +msgstr "" + +#~ msgid "Invoice" +#~ msgstr "Τιμολόγιο" diff --git a/account_invoice_view_payment/i18n/en_GB.po b/account_invoice_view_payment/i18n/en_GB.po new file mode 100644 index 00000000000..ce88bea04eb --- /dev/null +++ b/account_invoice_view_payment/i18n/en_GB.po @@ -0,0 +1,45 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_view_payment +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-11-23 13:51+0000\n" +"PO-Revision-Date: 2017-11-23 13:51+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: 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_view_payment +#: model:ir.model,name:account_invoice_view_payment.model_account_move +msgid "Journal Entry" +msgstr "" + +#. module: account_invoice_view_payment +#: code:addons/account_invoice_view_payment/models/account_payment.py:0 +#: model:ir.model,name:account_invoice_view_payment.model_account_payment +#, python-format +msgid "Payments" +msgstr "" + +#. module: account_invoice_view_payment +#: model_terms:ir.ui.view,arch_db:account_invoice_view_payment.view_account_payment_invoice_form +msgid "Validate & View Payment" +msgstr "" + +#. module: account_invoice_view_payment +#: model_terms:ir.ui.view,arch_db:account_invoice_view_payment.view_move_form +msgid "View Payments" +msgstr "" + +#~ msgid "Invoice" +#~ msgstr "Invoice" diff --git a/account_invoice_view_payment/i18n/es.po b/account_invoice_view_payment/i18n/es.po new file mode 100644 index 00000000000..7a7bda8265d --- /dev/null +++ b/account_invoice_view_payment/i18n/es.po @@ -0,0 +1,48 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_view_payment +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-11-23 13:51+0000\n" +"PO-Revision-Date: 2023-06-07 14:09+0000\n" +"Last-Translator: Jesarregui \n" +"Language-Team: Spanish (https://www.transifex.com/oca/teams/23907/es/)\n" +"Language: es\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 4.17\n" + +#. module: account_invoice_view_payment +#: model:ir.model,name:account_invoice_view_payment.model_account_move +msgid "Journal Entry" +msgstr "Asiento contable" + +#. module: account_invoice_view_payment +#: code:addons/account_invoice_view_payment/models/account_payment.py:0 +#: model:ir.model,name:account_invoice_view_payment.model_account_payment +#, python-format +msgid "Payments" +msgstr "Pagos" + +#. module: account_invoice_view_payment +#: model_terms:ir.ui.view,arch_db:account_invoice_view_payment.view_account_payment_invoice_form +msgid "Validate & View Payment" +msgstr "Validar y ver el pago" + +#. module: account_invoice_view_payment +#: model_terms:ir.ui.view,arch_db:account_invoice_view_payment.view_move_form +msgid "View Payments" +msgstr "Ver pagos" + +#~ msgid "Register Payment" +#~ msgstr "Registrar pago" + +#~ msgid "Invoice" +#~ msgstr "Factura" diff --git a/account_invoice_view_payment/i18n/es_CR.po b/account_invoice_view_payment/i18n/es_CR.po new file mode 100644 index 00000000000..b09ff738aaf --- /dev/null +++ b/account_invoice_view_payment/i18n/es_CR.po @@ -0,0 +1,45 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_view_payment +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-11-23 13:51+0000\n" +"PO-Revision-Date: 2017-11-23 13:51+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: 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_view_payment +#: model:ir.model,name:account_invoice_view_payment.model_account_move +msgid "Journal Entry" +msgstr "" + +#. module: account_invoice_view_payment +#: code:addons/account_invoice_view_payment/models/account_payment.py:0 +#: model:ir.model,name:account_invoice_view_payment.model_account_payment +#, python-format +msgid "Payments" +msgstr "" + +#. module: account_invoice_view_payment +#: model_terms:ir.ui.view,arch_db:account_invoice_view_payment.view_account_payment_invoice_form +msgid "Validate & View Payment" +msgstr "" + +#. module: account_invoice_view_payment +#: model_terms:ir.ui.view,arch_db:account_invoice_view_payment.view_move_form +msgid "View Payments" +msgstr "" + +#~ msgid "Invoice" +#~ msgstr "Factura" diff --git a/account_invoice_view_payment/i18n/es_EC.po b/account_invoice_view_payment/i18n/es_EC.po new file mode 100644 index 00000000000..b6da6501193 --- /dev/null +++ b/account_invoice_view_payment/i18n/es_EC.po @@ -0,0 +1,45 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_view_payment +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-11-23 13:51+0000\n" +"PO-Revision-Date: 2017-11-23 13:51+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: 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_view_payment +#: model:ir.model,name:account_invoice_view_payment.model_account_move +msgid "Journal Entry" +msgstr "" + +#. module: account_invoice_view_payment +#: code:addons/account_invoice_view_payment/models/account_payment.py:0 +#: model:ir.model,name:account_invoice_view_payment.model_account_payment +#, python-format +msgid "Payments" +msgstr "" + +#. module: account_invoice_view_payment +#: model_terms:ir.ui.view,arch_db:account_invoice_view_payment.view_account_payment_invoice_form +msgid "Validate & View Payment" +msgstr "" + +#. module: account_invoice_view_payment +#: model_terms:ir.ui.view,arch_db:account_invoice_view_payment.view_move_form +msgid "View Payments" +msgstr "" + +#~ msgid "Invoice" +#~ msgstr "Factura" diff --git a/account_invoice_view_payment/i18n/es_ES.po b/account_invoice_view_payment/i18n/es_ES.po new file mode 100644 index 00000000000..c734d7910d3 --- /dev/null +++ b/account_invoice_view_payment/i18n/es_ES.po @@ -0,0 +1,45 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_view_payment +# +# Translators: +# Fernando Lara , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-11-23 13:51+0000\n" +"PO-Revision-Date: 2017-11-23 13:51+0000\n" +"Last-Translator: 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_view_payment +#: model:ir.model,name:account_invoice_view_payment.model_account_move +msgid "Journal Entry" +msgstr "" + +#. module: account_invoice_view_payment +#: code:addons/account_invoice_view_payment/models/account_payment.py:0 +#: model:ir.model,name:account_invoice_view_payment.model_account_payment +#, python-format +msgid "Payments" +msgstr "" + +#. module: account_invoice_view_payment +#: model_terms:ir.ui.view,arch_db:account_invoice_view_payment.view_account_payment_invoice_form +msgid "Validate & View Payment" +msgstr "" + +#. module: account_invoice_view_payment +#: model_terms:ir.ui.view,arch_db:account_invoice_view_payment.view_move_form +msgid "View Payments" +msgstr "" + +#~ msgid "Invoice" +#~ msgstr "Factura" diff --git a/account_invoice_view_payment/i18n/es_MX.po b/account_invoice_view_payment/i18n/es_MX.po new file mode 100644 index 00000000000..4bbd49d8e10 --- /dev/null +++ b/account_invoice_view_payment/i18n/es_MX.po @@ -0,0 +1,45 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_view_payment +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-11-23 13:51+0000\n" +"PO-Revision-Date: 2017-11-23 13:51+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: 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_view_payment +#: model:ir.model,name:account_invoice_view_payment.model_account_move +msgid "Journal Entry" +msgstr "" + +#. module: account_invoice_view_payment +#: code:addons/account_invoice_view_payment/models/account_payment.py:0 +#: model:ir.model,name:account_invoice_view_payment.model_account_payment +#, python-format +msgid "Payments" +msgstr "" + +#. module: account_invoice_view_payment +#: model_terms:ir.ui.view,arch_db:account_invoice_view_payment.view_account_payment_invoice_form +msgid "Validate & View Payment" +msgstr "" + +#. module: account_invoice_view_payment +#: model_terms:ir.ui.view,arch_db:account_invoice_view_payment.view_move_form +msgid "View Payments" +msgstr "" + +#~ msgid "Invoice" +#~ msgstr "Factura" diff --git a/account_invoice_view_payment/i18n/es_PE.po b/account_invoice_view_payment/i18n/es_PE.po new file mode 100644 index 00000000000..8912cbf1dda --- /dev/null +++ b/account_invoice_view_payment/i18n/es_PE.po @@ -0,0 +1,45 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_view_payment +# +# Translators: +# OCA Transbot , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-04-18 02:48+0000\n" +"PO-Revision-Date: 2018-04-18 02:48+0000\n" +"Last-Translator: OCA Transbot , 2018\n" +"Language-Team: Spanish (Peru) (https://www.transifex.com/oca/teams/23907/" +"es_PE/)\n" +"Language: es_PE\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_invoice_view_payment +#: model:ir.model,name:account_invoice_view_payment.model_account_move +msgid "Journal Entry" +msgstr "" + +#. module: account_invoice_view_payment +#: code:addons/account_invoice_view_payment/models/account_payment.py:0 +#: model:ir.model,name:account_invoice_view_payment.model_account_payment +#, python-format +msgid "Payments" +msgstr "" + +#. module: account_invoice_view_payment +#: model_terms:ir.ui.view,arch_db:account_invoice_view_payment.view_account_payment_invoice_form +msgid "Validate & View Payment" +msgstr "" + +#. module: account_invoice_view_payment +#: model_terms:ir.ui.view,arch_db:account_invoice_view_payment.view_move_form +msgid "View Payments" +msgstr "" + +#~ msgid "Invoice" +#~ msgstr "Factura" diff --git a/account_invoice_view_payment/i18n/et.po b/account_invoice_view_payment/i18n/et.po new file mode 100644 index 00000000000..fe0dc05259e --- /dev/null +++ b/account_invoice_view_payment/i18n/et.po @@ -0,0 +1,44 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_view_payment +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-11-23 13:51+0000\n" +"PO-Revision-Date: 2017-11-23 13:51+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: 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_view_payment +#: model:ir.model,name:account_invoice_view_payment.model_account_move +msgid "Journal Entry" +msgstr "" + +#. module: account_invoice_view_payment +#: code:addons/account_invoice_view_payment/models/account_payment.py:0 +#: model:ir.model,name:account_invoice_view_payment.model_account_payment +#, python-format +msgid "Payments" +msgstr "" + +#. module: account_invoice_view_payment +#: model_terms:ir.ui.view,arch_db:account_invoice_view_payment.view_account_payment_invoice_form +msgid "Validate & View Payment" +msgstr "" + +#. module: account_invoice_view_payment +#: model_terms:ir.ui.view,arch_db:account_invoice_view_payment.view_move_form +msgid "View Payments" +msgstr "" + +#~ msgid "Invoice" +#~ msgstr "Arve" diff --git a/account_invoice_view_payment/i18n/fi.po b/account_invoice_view_payment/i18n/fi.po new file mode 100644 index 00000000000..e27fef211e3 --- /dev/null +++ b/account_invoice_view_payment/i18n/fi.po @@ -0,0 +1,44 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_view_payment +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-11-23 13:51+0000\n" +"PO-Revision-Date: 2017-11-23 13:51+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: 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_view_payment +#: model:ir.model,name:account_invoice_view_payment.model_account_move +msgid "Journal Entry" +msgstr "" + +#. module: account_invoice_view_payment +#: code:addons/account_invoice_view_payment/models/account_payment.py:0 +#: model:ir.model,name:account_invoice_view_payment.model_account_payment +#, python-format +msgid "Payments" +msgstr "" + +#. module: account_invoice_view_payment +#: model_terms:ir.ui.view,arch_db:account_invoice_view_payment.view_account_payment_invoice_form +msgid "Validate & View Payment" +msgstr "" + +#. module: account_invoice_view_payment +#: model_terms:ir.ui.view,arch_db:account_invoice_view_payment.view_move_form +msgid "View Payments" +msgstr "" + +#~ msgid "Invoice" +#~ msgstr "Lasku" diff --git a/account_invoice_view_payment/i18n/fr.po b/account_invoice_view_payment/i18n/fr.po new file mode 100644 index 00000000000..e581a7d9657 --- /dev/null +++ b/account_invoice_view_payment/i18n/fr.po @@ -0,0 +1,44 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_view_payment +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-11-23 13:51+0000\n" +"PO-Revision-Date: 2017-11-23 13:51+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: French (https://www.transifex.com/oca/teams/23907/fr/)\n" +"Language: fr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: account_invoice_view_payment +#: model:ir.model,name:account_invoice_view_payment.model_account_move +msgid "Journal Entry" +msgstr "" + +#. module: account_invoice_view_payment +#: code:addons/account_invoice_view_payment/models/account_payment.py:0 +#: model:ir.model,name:account_invoice_view_payment.model_account_payment +#, python-format +msgid "Payments" +msgstr "" + +#. module: account_invoice_view_payment +#: model_terms:ir.ui.view,arch_db:account_invoice_view_payment.view_account_payment_invoice_form +msgid "Validate & View Payment" +msgstr "" + +#. module: account_invoice_view_payment +#: model_terms:ir.ui.view,arch_db:account_invoice_view_payment.view_move_form +msgid "View Payments" +msgstr "" + +#~ msgid "Invoice" +#~ msgstr "Facture" diff --git a/account_invoice_view_payment/i18n/fr_CA.po b/account_invoice_view_payment/i18n/fr_CA.po new file mode 100644 index 00000000000..b0617c98f43 --- /dev/null +++ b/account_invoice_view_payment/i18n/fr_CA.po @@ -0,0 +1,45 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_view_payment +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-11-23 13:51+0000\n" +"PO-Revision-Date: 2017-11-23 13:51+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: French (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_view_payment +#: model:ir.model,name:account_invoice_view_payment.model_account_move +msgid "Journal Entry" +msgstr "" + +#. module: account_invoice_view_payment +#: code:addons/account_invoice_view_payment/models/account_payment.py:0 +#: model:ir.model,name:account_invoice_view_payment.model_account_payment +#, python-format +msgid "Payments" +msgstr "" + +#. module: account_invoice_view_payment +#: model_terms:ir.ui.view,arch_db:account_invoice_view_payment.view_account_payment_invoice_form +msgid "Validate & View Payment" +msgstr "" + +#. module: account_invoice_view_payment +#: model_terms:ir.ui.view,arch_db:account_invoice_view_payment.view_move_form +msgid "View Payments" +msgstr "" + +#~ msgid "Invoice" +#~ msgstr "Facture" diff --git a/account_invoice_view_payment/i18n/fr_CH.po b/account_invoice_view_payment/i18n/fr_CH.po new file mode 100644 index 00000000000..a82e60a0168 --- /dev/null +++ b/account_invoice_view_payment/i18n/fr_CH.po @@ -0,0 +1,45 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_view_payment +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-11-23 13:51+0000\n" +"PO-Revision-Date: 2017-11-23 13:51+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: French (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_view_payment +#: model:ir.model,name:account_invoice_view_payment.model_account_move +msgid "Journal Entry" +msgstr "" + +#. module: account_invoice_view_payment +#: code:addons/account_invoice_view_payment/models/account_payment.py:0 +#: model:ir.model,name:account_invoice_view_payment.model_account_payment +#, python-format +msgid "Payments" +msgstr "" + +#. module: account_invoice_view_payment +#: model_terms:ir.ui.view,arch_db:account_invoice_view_payment.view_account_payment_invoice_form +msgid "Validate & View Payment" +msgstr "" + +#. module: account_invoice_view_payment +#: model_terms:ir.ui.view,arch_db:account_invoice_view_payment.view_move_form +msgid "View Payments" +msgstr "" + +#~ msgid "Invoice" +#~ msgstr "Facture" diff --git a/account_invoice_view_payment/i18n/gl.po b/account_invoice_view_payment/i18n/gl.po new file mode 100644 index 00000000000..881b9128ee7 --- /dev/null +++ b/account_invoice_view_payment/i18n/gl.po @@ -0,0 +1,44 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_view_payment +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-11-23 13:51+0000\n" +"PO-Revision-Date: 2017-11-23 13:51+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: 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_view_payment +#: model:ir.model,name:account_invoice_view_payment.model_account_move +msgid "Journal Entry" +msgstr "" + +#. module: account_invoice_view_payment +#: code:addons/account_invoice_view_payment/models/account_payment.py:0 +#: model:ir.model,name:account_invoice_view_payment.model_account_payment +#, python-format +msgid "Payments" +msgstr "" + +#. module: account_invoice_view_payment +#: model_terms:ir.ui.view,arch_db:account_invoice_view_payment.view_account_payment_invoice_form +msgid "Validate & View Payment" +msgstr "" + +#. module: account_invoice_view_payment +#: model_terms:ir.ui.view,arch_db:account_invoice_view_payment.view_move_form +msgid "View Payments" +msgstr "" + +#~ msgid "Invoice" +#~ msgstr "Factura" diff --git a/account_invoice_view_payment/i18n/hr.po b/account_invoice_view_payment/i18n/hr.po new file mode 100644 index 00000000000..9fa738061c3 --- /dev/null +++ b/account_invoice_view_payment/i18n/hr.po @@ -0,0 +1,54 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_view_payment +# +# 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_view_payment +#: model:ir.model,name:account_invoice_view_payment.model_account_move +msgid "Journal Entry" +msgstr "" + +#. module: account_invoice_view_payment +#: code:addons/account_invoice_view_payment/models/account_payment.py:0 +#: model:ir.model,name:account_invoice_view_payment.model_account_payment +#, python-format +msgid "Payments" +msgstr "Plaćanja" + +#. module: account_invoice_view_payment +#: model_terms:ir.ui.view,arch_db:account_invoice_view_payment.view_account_payment_invoice_form +msgid "Validate & View Payment" +msgstr "Ovjeri i pogledaj plaćanje" + +#. module: account_invoice_view_payment +#: model_terms:ir.ui.view,arch_db:account_invoice_view_payment.view_move_form +msgid "View Payments" +msgstr "Pregled plaćanja" + +#~ msgid "Invoice" +#~ msgstr "Račun" + +#, fuzzy +#~| msgid "View Payments" +#~ msgid "Register Payments" +#~ msgstr "Pregled plaćanja" + +#~ msgid "Register payments on multiple invoices" +#~ msgstr "Registriraj plačanje za više računa" diff --git a/account_invoice_view_payment/i18n/hr_HR.po b/account_invoice_view_payment/i18n/hr_HR.po new file mode 100644 index 00000000000..414eb942e37 --- /dev/null +++ b/account_invoice_view_payment/i18n/hr_HR.po @@ -0,0 +1,46 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_view_payment +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-11-23 13:51+0000\n" +"PO-Revision-Date: 2017-11-23 13:51+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: 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_view_payment +#: model:ir.model,name:account_invoice_view_payment.model_account_move +msgid "Journal Entry" +msgstr "" + +#. module: account_invoice_view_payment +#: code:addons/account_invoice_view_payment/models/account_payment.py:0 +#: model:ir.model,name:account_invoice_view_payment.model_account_payment +#, python-format +msgid "Payments" +msgstr "" + +#. module: account_invoice_view_payment +#: model_terms:ir.ui.view,arch_db:account_invoice_view_payment.view_account_payment_invoice_form +msgid "Validate & View Payment" +msgstr "" + +#. module: account_invoice_view_payment +#: model_terms:ir.ui.view,arch_db:account_invoice_view_payment.view_move_form +msgid "View Payments" +msgstr "" + +#~ msgid "Invoice" +#~ msgstr "Račun" diff --git a/account_invoice_view_payment/i18n/hu.po b/account_invoice_view_payment/i18n/hu.po new file mode 100644 index 00000000000..8de9548b908 --- /dev/null +++ b/account_invoice_view_payment/i18n/hu.po @@ -0,0 +1,44 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_view_payment +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-11-23 13:51+0000\n" +"PO-Revision-Date: 2017-11-23 13:51+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: 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_view_payment +#: model:ir.model,name:account_invoice_view_payment.model_account_move +msgid "Journal Entry" +msgstr "" + +#. module: account_invoice_view_payment +#: code:addons/account_invoice_view_payment/models/account_payment.py:0 +#: model:ir.model,name:account_invoice_view_payment.model_account_payment +#, python-format +msgid "Payments" +msgstr "" + +#. module: account_invoice_view_payment +#: model_terms:ir.ui.view,arch_db:account_invoice_view_payment.view_account_payment_invoice_form +msgid "Validate & View Payment" +msgstr "" + +#. module: account_invoice_view_payment +#: model_terms:ir.ui.view,arch_db:account_invoice_view_payment.view_move_form +msgid "View Payments" +msgstr "" + +#~ msgid "Invoice" +#~ msgstr "Számla" diff --git a/account_invoice_view_payment/i18n/id.po b/account_invoice_view_payment/i18n/id.po new file mode 100644 index 00000000000..5d507b9cb59 --- /dev/null +++ b/account_invoice_view_payment/i18n/id.po @@ -0,0 +1,44 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_view_payment +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-11-23 13:51+0000\n" +"PO-Revision-Date: 2017-11-23 13:51+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: 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_view_payment +#: model:ir.model,name:account_invoice_view_payment.model_account_move +msgid "Journal Entry" +msgstr "" + +#. module: account_invoice_view_payment +#: code:addons/account_invoice_view_payment/models/account_payment.py:0 +#: model:ir.model,name:account_invoice_view_payment.model_account_payment +#, python-format +msgid "Payments" +msgstr "" + +#. module: account_invoice_view_payment +#: model_terms:ir.ui.view,arch_db:account_invoice_view_payment.view_account_payment_invoice_form +msgid "Validate & View Payment" +msgstr "" + +#. module: account_invoice_view_payment +#: model_terms:ir.ui.view,arch_db:account_invoice_view_payment.view_move_form +msgid "View Payments" +msgstr "" + +#~ msgid "Invoice" +#~ msgstr "Faktur" diff --git a/account_invoice_view_payment/i18n/it.po b/account_invoice_view_payment/i18n/it.po new file mode 100644 index 00000000000..0702d70723f --- /dev/null +++ b/account_invoice_view_payment/i18n/it.po @@ -0,0 +1,44 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_view_payment +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-11-23 13:51+0000\n" +"PO-Revision-Date: 2017-11-23 13:51+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Italian (https://www.transifex.com/oca/teams/23907/it/)\n" +"Language: it\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_invoice_view_payment +#: model:ir.model,name:account_invoice_view_payment.model_account_move +msgid "Journal Entry" +msgstr "" + +#. module: account_invoice_view_payment +#: code:addons/account_invoice_view_payment/models/account_payment.py:0 +#: model:ir.model,name:account_invoice_view_payment.model_account_payment +#, python-format +msgid "Payments" +msgstr "" + +#. module: account_invoice_view_payment +#: model_terms:ir.ui.view,arch_db:account_invoice_view_payment.view_account_payment_invoice_form +msgid "Validate & View Payment" +msgstr "" + +#. module: account_invoice_view_payment +#: model_terms:ir.ui.view,arch_db:account_invoice_view_payment.view_move_form +msgid "View Payments" +msgstr "" + +#~ msgid "Invoice" +#~ msgstr "Fattura" diff --git a/account_invoice_view_payment/i18n/ja.po b/account_invoice_view_payment/i18n/ja.po new file mode 100644 index 00000000000..e1be1152f83 --- /dev/null +++ b/account_invoice_view_payment/i18n/ja.po @@ -0,0 +1,44 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_view_payment +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-11-23 13:51+0000\n" +"PO-Revision-Date: 2017-11-23 13:51+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: 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_view_payment +#: model:ir.model,name:account_invoice_view_payment.model_account_move +msgid "Journal Entry" +msgstr "" + +#. module: account_invoice_view_payment +#: code:addons/account_invoice_view_payment/models/account_payment.py:0 +#: model:ir.model,name:account_invoice_view_payment.model_account_payment +#, python-format +msgid "Payments" +msgstr "" + +#. module: account_invoice_view_payment +#: model_terms:ir.ui.view,arch_db:account_invoice_view_payment.view_account_payment_invoice_form +msgid "Validate & View Payment" +msgstr "" + +#. module: account_invoice_view_payment +#: model_terms:ir.ui.view,arch_db:account_invoice_view_payment.view_move_form +msgid "View Payments" +msgstr "" + +#~ msgid "Invoice" +#~ msgstr "請求書" diff --git a/account_invoice_view_payment/i18n/lt.po b/account_invoice_view_payment/i18n/lt.po new file mode 100644 index 00000000000..fd40afe4691 --- /dev/null +++ b/account_invoice_view_payment/i18n/lt.po @@ -0,0 +1,45 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_view_payment +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-11-23 13:51+0000\n" +"PO-Revision-Date: 2017-11-23 13:51+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: 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_view_payment +#: model:ir.model,name:account_invoice_view_payment.model_account_move +msgid "Journal Entry" +msgstr "" + +#. module: account_invoice_view_payment +#: code:addons/account_invoice_view_payment/models/account_payment.py:0 +#: model:ir.model,name:account_invoice_view_payment.model_account_payment +#, python-format +msgid "Payments" +msgstr "" + +#. module: account_invoice_view_payment +#: model_terms:ir.ui.view,arch_db:account_invoice_view_payment.view_account_payment_invoice_form +msgid "Validate & View Payment" +msgstr "" + +#. module: account_invoice_view_payment +#: model_terms:ir.ui.view,arch_db:account_invoice_view_payment.view_move_form +msgid "View Payments" +msgstr "" + +#~ msgid "Invoice" +#~ msgstr "Sąskaita faktūra" diff --git a/account_invoice_view_payment/i18n/mk.po b/account_invoice_view_payment/i18n/mk.po new file mode 100644 index 00000000000..36cf1afe1a2 --- /dev/null +++ b/account_invoice_view_payment/i18n/mk.po @@ -0,0 +1,44 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_view_payment +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-11-23 13:51+0000\n" +"PO-Revision-Date: 2017-11-23 13:51+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: 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_view_payment +#: model:ir.model,name:account_invoice_view_payment.model_account_move +msgid "Journal Entry" +msgstr "" + +#. module: account_invoice_view_payment +#: code:addons/account_invoice_view_payment/models/account_payment.py:0 +#: model:ir.model,name:account_invoice_view_payment.model_account_payment +#, python-format +msgid "Payments" +msgstr "" + +#. module: account_invoice_view_payment +#: model_terms:ir.ui.view,arch_db:account_invoice_view_payment.view_account_payment_invoice_form +msgid "Validate & View Payment" +msgstr "" + +#. module: account_invoice_view_payment +#: model_terms:ir.ui.view,arch_db:account_invoice_view_payment.view_move_form +msgid "View Payments" +msgstr "" + +#~ msgid "Invoice" +#~ msgstr "Фактура" diff --git a/account_invoice_view_payment/i18n/mn.po b/account_invoice_view_payment/i18n/mn.po new file mode 100644 index 00000000000..5b26f22458d --- /dev/null +++ b/account_invoice_view_payment/i18n/mn.po @@ -0,0 +1,44 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_view_payment +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-11-23 13:51+0000\n" +"PO-Revision-Date: 2017-11-23 13:51+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: 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_view_payment +#: model:ir.model,name:account_invoice_view_payment.model_account_move +msgid "Journal Entry" +msgstr "" + +#. module: account_invoice_view_payment +#: code:addons/account_invoice_view_payment/models/account_payment.py:0 +#: model:ir.model,name:account_invoice_view_payment.model_account_payment +#, python-format +msgid "Payments" +msgstr "" + +#. module: account_invoice_view_payment +#: model_terms:ir.ui.view,arch_db:account_invoice_view_payment.view_account_payment_invoice_form +msgid "Validate & View Payment" +msgstr "" + +#. module: account_invoice_view_payment +#: model_terms:ir.ui.view,arch_db:account_invoice_view_payment.view_move_form +msgid "View Payments" +msgstr "" + +#~ msgid "Invoice" +#~ msgstr "Нэхэмжлэл" diff --git a/account_invoice_view_payment/i18n/nb.po b/account_invoice_view_payment/i18n/nb.po new file mode 100644 index 00000000000..34f4ebe4218 --- /dev/null +++ b/account_invoice_view_payment/i18n/nb.po @@ -0,0 +1,45 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_view_payment +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-11-23 13:51+0000\n" +"PO-Revision-Date: 2017-11-23 13:51+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: 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_view_payment +#: model:ir.model,name:account_invoice_view_payment.model_account_move +msgid "Journal Entry" +msgstr "" + +#. module: account_invoice_view_payment +#: code:addons/account_invoice_view_payment/models/account_payment.py:0 +#: model:ir.model,name:account_invoice_view_payment.model_account_payment +#, python-format +msgid "Payments" +msgstr "" + +#. module: account_invoice_view_payment +#: model_terms:ir.ui.view,arch_db:account_invoice_view_payment.view_account_payment_invoice_form +msgid "Validate & View Payment" +msgstr "" + +#. module: account_invoice_view_payment +#: model_terms:ir.ui.view,arch_db:account_invoice_view_payment.view_move_form +msgid "View Payments" +msgstr "" + +#~ msgid "Invoice" +#~ msgstr "Faktura" diff --git a/account_invoice_view_payment/i18n/nb_NO.po b/account_invoice_view_payment/i18n/nb_NO.po new file mode 100644 index 00000000000..8cdaa239eb0 --- /dev/null +++ b/account_invoice_view_payment/i18n/nb_NO.po @@ -0,0 +1,45 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_view_payment +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-11-23 13:51+0000\n" +"PO-Revision-Date: 2017-11-23 13:51+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: 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_view_payment +#: model:ir.model,name:account_invoice_view_payment.model_account_move +msgid "Journal Entry" +msgstr "" + +#. module: account_invoice_view_payment +#: code:addons/account_invoice_view_payment/models/account_payment.py:0 +#: model:ir.model,name:account_invoice_view_payment.model_account_payment +#, python-format +msgid "Payments" +msgstr "" + +#. module: account_invoice_view_payment +#: model_terms:ir.ui.view,arch_db:account_invoice_view_payment.view_account_payment_invoice_form +msgid "Validate & View Payment" +msgstr "" + +#. module: account_invoice_view_payment +#: model_terms:ir.ui.view,arch_db:account_invoice_view_payment.view_move_form +msgid "View Payments" +msgstr "" + +#~ msgid "Invoice" +#~ msgstr "Innmelding" diff --git a/account_invoice_view_payment/i18n/nl.po b/account_invoice_view_payment/i18n/nl.po new file mode 100644 index 00000000000..25fbc29055a --- /dev/null +++ b/account_invoice_view_payment/i18n/nl.po @@ -0,0 +1,44 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_view_payment +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-11-23 13:51+0000\n" +"PO-Revision-Date: 2017-11-23 13:51+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: 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_view_payment +#: model:ir.model,name:account_invoice_view_payment.model_account_move +msgid "Journal Entry" +msgstr "" + +#. module: account_invoice_view_payment +#: code:addons/account_invoice_view_payment/models/account_payment.py:0 +#: model:ir.model,name:account_invoice_view_payment.model_account_payment +#, python-format +msgid "Payments" +msgstr "" + +#. module: account_invoice_view_payment +#: model_terms:ir.ui.view,arch_db:account_invoice_view_payment.view_account_payment_invoice_form +msgid "Validate & View Payment" +msgstr "" + +#. module: account_invoice_view_payment +#: model_terms:ir.ui.view,arch_db:account_invoice_view_payment.view_move_form +msgid "View Payments" +msgstr "" + +#~ msgid "Invoice" +#~ msgstr "Factuur" diff --git a/account_invoice_view_payment/i18n/nl_BE.po b/account_invoice_view_payment/i18n/nl_BE.po new file mode 100644 index 00000000000..6612b48186c --- /dev/null +++ b/account_invoice_view_payment/i18n/nl_BE.po @@ -0,0 +1,45 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_view_payment +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-11-23 13:51+0000\n" +"PO-Revision-Date: 2017-11-23 13:51+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: 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_view_payment +#: model:ir.model,name:account_invoice_view_payment.model_account_move +msgid "Journal Entry" +msgstr "" + +#. module: account_invoice_view_payment +#: code:addons/account_invoice_view_payment/models/account_payment.py:0 +#: model:ir.model,name:account_invoice_view_payment.model_account_payment +#, python-format +msgid "Payments" +msgstr "" + +#. module: account_invoice_view_payment +#: model_terms:ir.ui.view,arch_db:account_invoice_view_payment.view_account_payment_invoice_form +msgid "Validate & View Payment" +msgstr "" + +#. module: account_invoice_view_payment +#: model_terms:ir.ui.view,arch_db:account_invoice_view_payment.view_move_form +msgid "View Payments" +msgstr "" + +#~ msgid "Invoice" +#~ msgstr "Factuur" diff --git a/account_invoice_view_payment/i18n/nl_NL.po b/account_invoice_view_payment/i18n/nl_NL.po new file mode 100644 index 00000000000..3e76c40f734 --- /dev/null +++ b/account_invoice_view_payment/i18n/nl_NL.po @@ -0,0 +1,54 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_view_payment +# +# Translators: +# Peter Hageman , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-11-23 13:51+0000\n" +"PO-Revision-Date: 2018-07-09 16:27+0000\n" +"Last-Translator: Thomas Pot \n" +"Language-Team: Dutch (Netherlands) (https://www.transifex.com/oca/" +"teams/23907/nl_NL/)\n" +"Language: nl_NL\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 3.0.1\n" + +#. module: account_invoice_view_payment +#: model:ir.model,name:account_invoice_view_payment.model_account_move +msgid "Journal Entry" +msgstr "" + +#. module: account_invoice_view_payment +#: code:addons/account_invoice_view_payment/models/account_payment.py:0 +#: model:ir.model,name:account_invoice_view_payment.model_account_payment +#, python-format +msgid "Payments" +msgstr "Betalingen" + +#. module: account_invoice_view_payment +#: model_terms:ir.ui.view,arch_db:account_invoice_view_payment.view_account_payment_invoice_form +msgid "Validate & View Payment" +msgstr "Bevestig en bekijk betalingen" + +#. module: account_invoice_view_payment +#: model_terms:ir.ui.view,arch_db:account_invoice_view_payment.view_move_form +msgid "View Payments" +msgstr "Bekijk betalingen" + +#~ msgid "Invoice" +#~ msgstr "Factuur" + +#, fuzzy +#~| msgid "View Payments" +#~ msgid "Register Payments" +#~ msgstr "Bekijk betalingen" + +#~ msgid "Register payments on multiple invoices" +#~ msgstr "Registreer betalingen van meerdere facturen" diff --git a/account_invoice_view_payment/i18n/pl.po b/account_invoice_view_payment/i18n/pl.po new file mode 100644 index 00000000000..74b64963a7c --- /dev/null +++ b/account_invoice_view_payment/i18n/pl.po @@ -0,0 +1,46 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_view_payment +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-11-23 13:51+0000\n" +"PO-Revision-Date: 2017-11-23 13:51+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: 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_view_payment +#: model:ir.model,name:account_invoice_view_payment.model_account_move +msgid "Journal Entry" +msgstr "" + +#. module: account_invoice_view_payment +#: code:addons/account_invoice_view_payment/models/account_payment.py:0 +#: model:ir.model,name:account_invoice_view_payment.model_account_payment +#, python-format +msgid "Payments" +msgstr "" + +#. module: account_invoice_view_payment +#: model_terms:ir.ui.view,arch_db:account_invoice_view_payment.view_account_payment_invoice_form +msgid "Validate & View Payment" +msgstr "" + +#. module: account_invoice_view_payment +#: model_terms:ir.ui.view,arch_db:account_invoice_view_payment.view_move_form +msgid "View Payments" +msgstr "" + +#~ msgid "Invoice" +#~ msgstr "Faktura" diff --git a/account_invoice_view_payment/i18n/pt.po b/account_invoice_view_payment/i18n/pt.po new file mode 100644 index 00000000000..dd498fa0cdc --- /dev/null +++ b/account_invoice_view_payment/i18n/pt.po @@ -0,0 +1,44 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_view_payment +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-11-23 13:51+0000\n" +"PO-Revision-Date: 2017-11-23 13:51+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: 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_view_payment +#: model:ir.model,name:account_invoice_view_payment.model_account_move +msgid "Journal Entry" +msgstr "" + +#. module: account_invoice_view_payment +#: code:addons/account_invoice_view_payment/models/account_payment.py:0 +#: model:ir.model,name:account_invoice_view_payment.model_account_payment +#, python-format +msgid "Payments" +msgstr "" + +#. module: account_invoice_view_payment +#: model_terms:ir.ui.view,arch_db:account_invoice_view_payment.view_account_payment_invoice_form +msgid "Validate & View Payment" +msgstr "" + +#. module: account_invoice_view_payment +#: model_terms:ir.ui.view,arch_db:account_invoice_view_payment.view_move_form +msgid "View Payments" +msgstr "" + +#~ msgid "Invoice" +#~ msgstr "Fatura" diff --git a/account_invoice_view_payment/i18n/pt_BR.po b/account_invoice_view_payment/i18n/pt_BR.po new file mode 100644 index 00000000000..d0710f5a65d --- /dev/null +++ b/account_invoice_view_payment/i18n/pt_BR.po @@ -0,0 +1,50 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_view_payment +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-11-23 13:51+0000\n" +"PO-Revision-Date: 2024-05-17 20:34+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 4.17\n" + +#. module: account_invoice_view_payment +#: model:ir.model,name:account_invoice_view_payment.model_account_move +msgid "Journal Entry" +msgstr "Registro contábil" + +#. module: account_invoice_view_payment +#: code:addons/account_invoice_view_payment/models/account_payment.py:0 +#: model:ir.model,name:account_invoice_view_payment.model_account_payment +#, python-format +msgid "Payments" +msgstr "Pagamentos" + +#. module: account_invoice_view_payment +#: model_terms:ir.ui.view,arch_db:account_invoice_view_payment.view_account_payment_invoice_form +msgid "Validate & View Payment" +msgstr "Validar & Ver Pagamento" + +#. module: account_invoice_view_payment +#: model_terms:ir.ui.view,arch_db:account_invoice_view_payment.view_move_form +msgid "View Payments" +msgstr "Ver Pagamentos" + +#~ msgid "Invoice" +#~ msgstr "Fatura" + +#~ msgid "Register Payments" +#~ msgstr "Registros de Pagamentos" diff --git a/account_invoice_view_payment/i18n/pt_PT.po b/account_invoice_view_payment/i18n/pt_PT.po new file mode 100644 index 00000000000..a4d3d4bcab0 --- /dev/null +++ b/account_invoice_view_payment/i18n/pt_PT.po @@ -0,0 +1,45 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_view_payment +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-11-23 13:51+0000\n" +"PO-Revision-Date: 2017-11-23 13:51+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: 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_view_payment +#: model:ir.model,name:account_invoice_view_payment.model_account_move +msgid "Journal Entry" +msgstr "" + +#. module: account_invoice_view_payment +#: code:addons/account_invoice_view_payment/models/account_payment.py:0 +#: model:ir.model,name:account_invoice_view_payment.model_account_payment +#, python-format +msgid "Payments" +msgstr "" + +#. module: account_invoice_view_payment +#: model_terms:ir.ui.view,arch_db:account_invoice_view_payment.view_account_payment_invoice_form +msgid "Validate & View Payment" +msgstr "" + +#. module: account_invoice_view_payment +#: model_terms:ir.ui.view,arch_db:account_invoice_view_payment.view_move_form +msgid "View Payments" +msgstr "" + +#~ msgid "Invoice" +#~ msgstr "Fatura" diff --git a/account_invoice_view_payment/i18n/ro.po b/account_invoice_view_payment/i18n/ro.po new file mode 100644 index 00000000000..7460b8040be --- /dev/null +++ b/account_invoice_view_payment/i18n/ro.po @@ -0,0 +1,45 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_view_payment +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-11-23 13:51+0000\n" +"PO-Revision-Date: 2017-11-23 13:51+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: 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_view_payment +#: model:ir.model,name:account_invoice_view_payment.model_account_move +msgid "Journal Entry" +msgstr "" + +#. module: account_invoice_view_payment +#: code:addons/account_invoice_view_payment/models/account_payment.py:0 +#: model:ir.model,name:account_invoice_view_payment.model_account_payment +#, python-format +msgid "Payments" +msgstr "" + +#. module: account_invoice_view_payment +#: model_terms:ir.ui.view,arch_db:account_invoice_view_payment.view_account_payment_invoice_form +msgid "Validate & View Payment" +msgstr "" + +#. module: account_invoice_view_payment +#: model_terms:ir.ui.view,arch_db:account_invoice_view_payment.view_move_form +msgid "View Payments" +msgstr "" + +#~ msgid "Invoice" +#~ msgstr "Factura" diff --git a/account_invoice_view_payment/i18n/ru.po b/account_invoice_view_payment/i18n/ru.po new file mode 100644 index 00000000000..e30407322ed --- /dev/null +++ b/account_invoice_view_payment/i18n/ru.po @@ -0,0 +1,55 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_view_payment +# +# 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_view_payment +#: model:ir.model,name:account_invoice_view_payment.model_account_move +msgid "Journal Entry" +msgstr "" + +#. module: account_invoice_view_payment +#: code:addons/account_invoice_view_payment/models/account_payment.py:0 +#: model:ir.model,name:account_invoice_view_payment.model_account_payment +#, python-format +msgid "Payments" +msgstr "Платежи" + +#. module: account_invoice_view_payment +#: model_terms:ir.ui.view,arch_db:account_invoice_view_payment.view_account_payment_invoice_form +msgid "Validate & View Payment" +msgstr "Проверка и Просмотр Платежа" + +#. module: account_invoice_view_payment +#: model_terms:ir.ui.view,arch_db:account_invoice_view_payment.view_move_form +msgid "View Payments" +msgstr "Просмотр Платежей" + +#~ msgid "Invoice" +#~ msgstr "Счет" + +#, fuzzy +#~| msgid "View Payments" +#~ msgid "Register Payments" +#~ msgstr "Просмотр Платежей" + +#~ msgid "Register payments on multiple invoices" +#~ msgstr "Зарегистрировать платежи по нескольким счетам" diff --git a/account_invoice_view_payment/i18n/sk_SK.po b/account_invoice_view_payment/i18n/sk_SK.po new file mode 100644 index 00000000000..82d86b8b629 --- /dev/null +++ b/account_invoice_view_payment/i18n/sk_SK.po @@ -0,0 +1,45 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_view_payment +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-11-23 13:51+0000\n" +"PO-Revision-Date: 2017-11-23 13:51+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: 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_view_payment +#: model:ir.model,name:account_invoice_view_payment.model_account_move +msgid "Journal Entry" +msgstr "" + +#. module: account_invoice_view_payment +#: code:addons/account_invoice_view_payment/models/account_payment.py:0 +#: model:ir.model,name:account_invoice_view_payment.model_account_payment +#, python-format +msgid "Payments" +msgstr "" + +#. module: account_invoice_view_payment +#: model_terms:ir.ui.view,arch_db:account_invoice_view_payment.view_account_payment_invoice_form +msgid "Validate & View Payment" +msgstr "" + +#. module: account_invoice_view_payment +#: model_terms:ir.ui.view,arch_db:account_invoice_view_payment.view_move_form +msgid "View Payments" +msgstr "" + +#~ msgid "Invoice" +#~ msgstr "Faktúra" diff --git a/account_invoice_view_payment/i18n/sl.po b/account_invoice_view_payment/i18n/sl.po new file mode 100644 index 00000000000..f9b74b4c2d2 --- /dev/null +++ b/account_invoice_view_payment/i18n/sl.po @@ -0,0 +1,45 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_view_payment +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-11-23 13:51+0000\n" +"PO-Revision-Date: 2017-11-23 13:51+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Slovenian (https://www.transifex.com/oca/teams/23907/sl/)\n" +"Language: sl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" +"%100==4 ? 2 : 3);\n" + +#. module: account_invoice_view_payment +#: model:ir.model,name:account_invoice_view_payment.model_account_move +msgid "Journal Entry" +msgstr "" + +#. module: account_invoice_view_payment +#: code:addons/account_invoice_view_payment/models/account_payment.py:0 +#: model:ir.model,name:account_invoice_view_payment.model_account_payment +#, python-format +msgid "Payments" +msgstr "" + +#. module: account_invoice_view_payment +#: model_terms:ir.ui.view,arch_db:account_invoice_view_payment.view_account_payment_invoice_form +msgid "Validate & View Payment" +msgstr "" + +#. module: account_invoice_view_payment +#: model_terms:ir.ui.view,arch_db:account_invoice_view_payment.view_move_form +msgid "View Payments" +msgstr "" + +#~ msgid "Invoice" +#~ msgstr "Račun" diff --git a/account_invoice_view_payment/i18n/sv.po b/account_invoice_view_payment/i18n/sv.po new file mode 100644 index 00000000000..3fe6b34531d --- /dev/null +++ b/account_invoice_view_payment/i18n/sv.po @@ -0,0 +1,44 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_view_payment +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-11-23 13:51+0000\n" +"PO-Revision-Date: 2017-11-23 13:51+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: 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_view_payment +#: model:ir.model,name:account_invoice_view_payment.model_account_move +msgid "Journal Entry" +msgstr "" + +#. module: account_invoice_view_payment +#: code:addons/account_invoice_view_payment/models/account_payment.py:0 +#: model:ir.model,name:account_invoice_view_payment.model_account_payment +#, python-format +msgid "Payments" +msgstr "" + +#. module: account_invoice_view_payment +#: model_terms:ir.ui.view,arch_db:account_invoice_view_payment.view_account_payment_invoice_form +msgid "Validate & View Payment" +msgstr "" + +#. module: account_invoice_view_payment +#: model_terms:ir.ui.view,arch_db:account_invoice_view_payment.view_move_form +msgid "View Payments" +msgstr "" + +#~ msgid "Invoice" +#~ msgstr "Faktura" diff --git a/account_invoice_view_payment/i18n/th.po b/account_invoice_view_payment/i18n/th.po new file mode 100644 index 00000000000..2ba103d3d3d --- /dev/null +++ b/account_invoice_view_payment/i18n/th.po @@ -0,0 +1,44 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_view_payment +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-11-23 13:51+0000\n" +"PO-Revision-Date: 2017-11-23 13:51+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: 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_view_payment +#: model:ir.model,name:account_invoice_view_payment.model_account_move +msgid "Journal Entry" +msgstr "" + +#. module: account_invoice_view_payment +#: code:addons/account_invoice_view_payment/models/account_payment.py:0 +#: model:ir.model,name:account_invoice_view_payment.model_account_payment +#, python-format +msgid "Payments" +msgstr "" + +#. module: account_invoice_view_payment +#: model_terms:ir.ui.view,arch_db:account_invoice_view_payment.view_account_payment_invoice_form +msgid "Validate & View Payment" +msgstr "" + +#. module: account_invoice_view_payment +#: model_terms:ir.ui.view,arch_db:account_invoice_view_payment.view_move_form +msgid "View Payments" +msgstr "" + +#~ msgid "Invoice" +#~ msgstr "ใบแจ้งหนี้" diff --git a/account_invoice_view_payment/i18n/tr.po b/account_invoice_view_payment/i18n/tr.po new file mode 100644 index 00000000000..407c4eee09d --- /dev/null +++ b/account_invoice_view_payment/i18n/tr.po @@ -0,0 +1,44 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_view_payment +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-11-23 13:51+0000\n" +"PO-Revision-Date: 2017-11-23 13:51+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: 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_view_payment +#: model:ir.model,name:account_invoice_view_payment.model_account_move +msgid "Journal Entry" +msgstr "" + +#. module: account_invoice_view_payment +#: code:addons/account_invoice_view_payment/models/account_payment.py:0 +#: model:ir.model,name:account_invoice_view_payment.model_account_payment +#, python-format +msgid "Payments" +msgstr "" + +#. module: account_invoice_view_payment +#: model_terms:ir.ui.view,arch_db:account_invoice_view_payment.view_account_payment_invoice_form +msgid "Validate & View Payment" +msgstr "" + +#. module: account_invoice_view_payment +#: model_terms:ir.ui.view,arch_db:account_invoice_view_payment.view_move_form +msgid "View Payments" +msgstr "" + +#~ msgid "Invoice" +#~ msgstr "Fatura" diff --git a/account_invoice_view_payment/i18n/tr_TR.po b/account_invoice_view_payment/i18n/tr_TR.po new file mode 100644 index 00000000000..b40d2fcabdb --- /dev/null +++ b/account_invoice_view_payment/i18n/tr_TR.po @@ -0,0 +1,45 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_view_payment +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-11-23 13:51+0000\n" +"PO-Revision-Date: 2017-11-23 13:51+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: 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_view_payment +#: model:ir.model,name:account_invoice_view_payment.model_account_move +msgid "Journal Entry" +msgstr "" + +#. module: account_invoice_view_payment +#: code:addons/account_invoice_view_payment/models/account_payment.py:0 +#: model:ir.model,name:account_invoice_view_payment.model_account_payment +#, python-format +msgid "Payments" +msgstr "" + +#. module: account_invoice_view_payment +#: model_terms:ir.ui.view,arch_db:account_invoice_view_payment.view_account_payment_invoice_form +msgid "Validate & View Payment" +msgstr "" + +#. module: account_invoice_view_payment +#: model_terms:ir.ui.view,arch_db:account_invoice_view_payment.view_move_form +msgid "View Payments" +msgstr "" + +#~ msgid "Invoice" +#~ msgstr "Fatura" diff --git a/account_invoice_view_payment/i18n/zh_CN.po b/account_invoice_view_payment/i18n/zh_CN.po new file mode 100644 index 00000000000..85481de33a3 --- /dev/null +++ b/account_invoice_view_payment/i18n/zh_CN.po @@ -0,0 +1,45 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_view_payment +# +# Translators: +# 三 张 <731414193@qq.com>, 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-11-23 13:51+0000\n" +"PO-Revision-Date: 2017-11-23 13:51+0000\n" +"Last-Translator: 三 张 <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_view_payment +#: model:ir.model,name:account_invoice_view_payment.model_account_move +msgid "Journal Entry" +msgstr "" + +#. module: account_invoice_view_payment +#: code:addons/account_invoice_view_payment/models/account_payment.py:0 +#: model:ir.model,name:account_invoice_view_payment.model_account_payment +#, python-format +msgid "Payments" +msgstr "" + +#. module: account_invoice_view_payment +#: model_terms:ir.ui.view,arch_db:account_invoice_view_payment.view_account_payment_invoice_form +msgid "Validate & View Payment" +msgstr "" + +#. module: account_invoice_view_payment +#: model_terms:ir.ui.view,arch_db:account_invoice_view_payment.view_move_form +msgid "View Payments" +msgstr "" + +#~ msgid "Invoice" +#~ msgstr "发票" diff --git a/account_invoice_view_payment/i18n/zh_TW.po b/account_invoice_view_payment/i18n/zh_TW.po new file mode 100644 index 00000000000..ae0fe977355 --- /dev/null +++ b/account_invoice_view_payment/i18n/zh_TW.po @@ -0,0 +1,45 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_view_payment +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-11-23 13:51+0000\n" +"PO-Revision-Date: 2017-11-23 13:51+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: 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_view_payment +#: model:ir.model,name:account_invoice_view_payment.model_account_move +msgid "Journal Entry" +msgstr "" + +#. module: account_invoice_view_payment +#: code:addons/account_invoice_view_payment/models/account_payment.py:0 +#: model:ir.model,name:account_invoice_view_payment.model_account_payment +#, python-format +msgid "Payments" +msgstr "" + +#. module: account_invoice_view_payment +#: model_terms:ir.ui.view,arch_db:account_invoice_view_payment.view_account_payment_invoice_form +msgid "Validate & View Payment" +msgstr "" + +#. module: account_invoice_view_payment +#: model_terms:ir.ui.view,arch_db:account_invoice_view_payment.view_move_form +msgid "View Payments" +msgstr "" + +#~ msgid "Invoice" +#~ msgstr "發票" diff --git a/account_invoice_view_payment/models/__init__.py b/account_invoice_view_payment/models/__init__.py new file mode 100644 index 00000000000..1a72b8e6c38 --- /dev/null +++ b/account_invoice_view_payment/models/__init__.py @@ -0,0 +1,4 @@ +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html) + +from . import account_move +from . import account_payment diff --git a/account_invoice_view_payment/models/account_move.py b/account_invoice_view_payment/models/account_move.py new file mode 100644 index 00000000000..662868667f8 --- /dev/null +++ b/account_invoice_view_payment/models/account_move.py @@ -0,0 +1,37 @@ +# Copyright 2017 ForgeFlow S.L. +# (https://www.forgeflow.com) +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html) + +from odoo import models + + +class AccountMove(models.Model): + _inherit = "account.move" + + def action_view_payments(self): + """ + This function returns an action that display existing payments of given + account moves. + When only one found, show the payment immediately. + """ + if self.move_type in ("in_invoice", "in_refund"): + action = self.env["ir.actions.act_window"]._for_xml_id( + "account.action_account_payments_payable" + ) + else: + action = self.env["ir.actions.act_window"]._for_xml_id( + "account.action_account_payments" + ) + + payments = [] + for move in self: + payments = move._get_reconciled_payments().ids + + # choose the view_mode accordingly + if len(payments) != 1: + action["domain"] = "[('id', 'in', " + str(payments) + ")]" + else: + res = self.env.ref("account.view_account_payment_form", False) + action["views"] = [(res and res.id or False, "form")] + action["res_id"] = payments and payments[0] or False + return action diff --git a/account_invoice_view_payment/models/account_payment.py b/account_invoice_view_payment/models/account_payment.py new file mode 100644 index 00000000000..2ffd329ad0c --- /dev/null +++ b/account_invoice_view_payment/models/account_payment.py @@ -0,0 +1,22 @@ +# Copyright 2017 ForgeFlow S.L. +# (https://www.forgeflow.com) +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html) + +from odoo import _, models + + +class AccountPayment(models.Model): + _inherit = "account.payment" + + def post_and_open_payment(self): + self.action_post() + res = { + "name": _("Payments"), + "views": [(False, "form")], + "res_id": self.id, + "res_model": "account.payment", + "view_id": False, + "context": False, + "type": "ir.actions.act_window", + } + return res diff --git a/account_invoice_view_payment/readme/CONFIGURE.rst b/account_invoice_view_payment/readme/CONFIGURE.rst new file mode 100644 index 00000000000..e664868039d --- /dev/null +++ b/account_invoice_view_payment/readme/CONFIGURE.rst @@ -0,0 +1,2 @@ +Only users assigned to the group "Billing" can display the payments from the +invoice. diff --git a/account_invoice_view_payment/readme/CONTRIBUTORS.rst b/account_invoice_view_payment/readme/CONTRIBUTORS.rst new file mode 100644 index 00000000000..55021b30bf5 --- /dev/null +++ b/account_invoice_view_payment/readme/CONTRIBUTORS.rst @@ -0,0 +1,5 @@ +* Jordi Ballester +* Miquel Raïch +* Achraf Mhadhbi +* Rattapong Chokmasermkul +* Juany Davila diff --git a/account_invoice_view_payment/readme/DESCRIPTION.rst b/account_invoice_view_payment/readme/DESCRIPTION.rst new file mode 100644 index 00000000000..a88cb1ea308 --- /dev/null +++ b/account_invoice_view_payment/readme/DESCRIPTION.rst @@ -0,0 +1,6 @@ +This module allows users to access directly to the payment from an invoice +when registering a payment or afterwards. + +The option to open the payment when it's being registered is useful +when the user needs to do a follow-up step on the payment, such as printing +the associated check. diff --git a/account_invoice_view_payment/readme/USAGE.rst b/account_invoice_view_payment/readme/USAGE.rst new file mode 100644 index 00000000000..106cc88e097 --- /dev/null +++ b/account_invoice_view_payment/readme/USAGE.rst @@ -0,0 +1,10 @@ +Registering a payment + +#. Go to an open customer invoice or vendor bill and press 'Register Payment'. +#. Enter the payment details and press 'Validate & View Payment'. + +After payment has been made + +#. Go to an open customer invoice or vendor bill and press the link + 'View Payments' that appears next to the list of payments made for that + invoice. diff --git a/account_invoice_view_payment/static/description/icon.png b/account_invoice_view_payment/static/description/icon.png new file mode 100644 index 00000000000..3a0328b516c Binary files /dev/null and b/account_invoice_view_payment/static/description/icon.png differ diff --git a/account_invoice_view_payment/static/description/index.html b/account_invoice_view_payment/static/description/index.html new file mode 100644 index 00000000000..03de59a472f --- /dev/null +++ b/account_invoice_view_payment/static/description/index.html @@ -0,0 +1,452 @@ + + + + + +Account Invoice View Payment + + + +
+

Account Invoice View Payment

+ + +

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

+

This module allows users to access directly to the payment from an invoice +when registering a payment or afterwards.

+

The option to open the payment when it’s being registered is useful +when the user needs to do a follow-up step on the payment, such as printing +the associated check.

+

Table of contents

+ +
+

Configuration

+

Only users assigned to the group “Billing” can display the payments from the +invoice.

+
+
+

Usage

+

Registering a payment

+
    +
  1. Go to an open customer invoice or vendor bill and press ‘Register Payment’.
  2. +
  3. Enter the payment details and press ‘Validate & View Payment’.
  4. +
+

After payment has been made

+
    +
  1. Go to an open customer invoice or vendor bill and press the link +‘View Payments’ that appears next to the list of payments made for that +invoice.
  2. +
+
+
+

Bug Tracker

+

Bugs are tracked on GitHub Issues. +In case of trouble, please check there if your issue has already been reported. +If you spotted it first, help us to smash it by providing a detailed and welcomed +feedback.

+

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

+
+
+

Credits

+
+

Authors

+
    +
  • ForgeFlow
  • +
+
+
+

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_view_payment/tests/__init__.py b/account_invoice_view_payment/tests/__init__.py new file mode 100644 index 00000000000..6fa243ca5c7 --- /dev/null +++ b/account_invoice_view_payment/tests/__init__.py @@ -0,0 +1,5 @@ +# Copyright 2017 ForgeFlow S.L. +# (https://www.forgeflow.com) +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html) + +from . import test_account_invoice_view_payment diff --git a/account_invoice_view_payment/tests/test_account_invoice_view_payment.py b/account_invoice_view_payment/tests/test_account_invoice_view_payment.py new file mode 100644 index 00000000000..0d4d00dab9b --- /dev/null +++ b/account_invoice_view_payment/tests/test_account_invoice_view_payment.py @@ -0,0 +1,194 @@ +# Copyright 2017 ForgeFlow S.L. +# (https://www.forgeflow.com) +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html) + +from odoo import fields +from odoo.tests.common import TransactionCase + + +# @tagged("post_install", "-at_install") +class TestAccountInvoiceViewPayment(TransactionCase): + """ + Tests for Account Invoice View Payment. + """ + + @classmethod + def setUpClass(cls): + super().setUpClass() + group_ids = cls.env.ref("account.group_account_invoice").ids + cls.test_user_1 = cls.env["res.users"].create( + {"name": "John", "login": "test1", "groups_id": [(6, 0, group_ids)]} + ) + cls.par_model = cls.env["res.partner"] + cls.acc_model = cls.env["account.account"] + cls.inv_model = cls.env["account.move"] + cls.inv_line_model = cls.env["account.move.line"] + cls.pay_model = cls.env["account.payment"] + cls.reg_pay_model = cls.env["account.payment.register"] + + cls.cash = cls.env["account.journal"].create( + {"name": "Cash Test", "type": "cash", "code": "CT"} + ) + cls.payment_method_manual_in = cls.env.ref( + "account.account_payment_method_manual_in" + ) + + cls.default_line_account = cls.acc_model.create( + { + "name": "TESTACC", + "code": "TESTACC", + "account_type": "income", + "deprecated": False, + "company_id": cls.env.user.company_id.id, + } + ) + + cls.inbound_payment_method_line = cls.cash.inbound_payment_method_line_ids[0] + cls.outbound_payment_method_line = cls.cash.outbound_payment_method_line_ids[0] + + cls.partner = cls._create_partner() + cls.invoice1 = cls._create_invoice(cls.partner, "out_invoice") + cls.invoice2 = cls._create_invoice(cls.partner, "in_invoice") + cls.invoice3 = cls._create_invoice(cls.partner, "in_invoice") + cls.invoice2.invoice_date = cls.invoice3.invoice_date = fields.Date.today() + + @classmethod + def _create_partner(cls): + partner = cls.par_model.create( + {"name": "Test Partner", "company_type": "company"} + ) + return partner + + @classmethod + def _create_invoice(cls, partner, invoice_type): + cls.invoice_lines = [ + ( + 0, + False, + { + "name": "Test section", + "display_type": "line_section", + }, + ), + ( + 0, + False, + { + "name": "Test description #1", + "account_id": cls.default_line_account.id, + "quantity": 1.0, + "price_unit": 100.0, + }, + ), + ( + 0, + False, + { + "name": "Test description #2", + "account_id": cls.default_line_account.id, + "quantity": 2.0, + "price_unit": 25.0, + }, + ), + ] + cls.invoice = cls.env["account.move"].create( + { + "partner_id": cls.partner.id, + "move_type": invoice_type, + "invoice_line_ids": cls.invoice_lines, + } + ) + return cls.invoice + + def test_account_move_view_payment_out_invoice(self): + self.invoice1.action_post() + wiz = ( + self.env["account.payment"] + .with_user(self.test_user_1) + .with_context(active_id=[self.invoice1.id], active_model="account.move") + .create( + { + "journal_id": self.cash.id, + "payment_method_id": self.payment_method_manual_in.id, + "amount": self.invoice1.amount_residual, + "payment_type": "inbound", + "payment_method_line_id": self.inbound_payment_method_line.id, + } + ) + ) + + res = wiz.post_and_open_payment() + + expect = {"type": "ir.actions.act_window", "res_model": "account.payment"} + self.assertDictEqual( + expect, + {k: v for k, v in res.items() if k in expect}, + "There was an error and the view couldn't be opened.", + ) + + view_payment = self.invoice1.action_view_payments() + + expect1 = {"type": "ir.actions.act_window", "res_model": "account.payment"} + self.assertDictEqual( + expect1, + {k: v for k, v in view_payment.items() if k in expect1}, + "There was an error and the invoice couldn't be paid.", + ) + + def test_account_move_view_payment_in_invoice(self): + self.invoice2.action_post() + wiz = ( + self.pay_model.with_user(self.test_user_1) + .with_context(active_id=[self.invoice2.id], active_model="account.move") + .create( + { + "journal_id": self.cash.id, + "payment_method_id": self.payment_method_manual_in.id, + "amount": self.invoice2.amount_residual, + "payment_type": "inbound", + "payment_method_line_id": self.inbound_payment_method_line.id, + } + ) + ) + + res = wiz.post_and_open_payment() + + expect = {"type": "ir.actions.act_window", "res_model": "account.payment"} + self.assertDictEqual( + expect, + {k: v for k, v in res.items() if k in expect}, + "There was an error and the view couldn't be opened.", + ) + + view_payment = self.invoice2.with_user(self.test_user_1).action_view_payments() + expect1 = {"type": "ir.actions.act_window", "res_model": "account.payment"} + self.assertDictEqual( + expect1, + {k: v for k, v in view_payment.items() if k in expect1}, + "There was an error and the view couldn't be opened.", + ) + + def test_view_account_payment_register_form(self): + self.invoice2.action_post() + self.invoice3.action_post() + wiz = ( + self.reg_pay_model.with_user(self.test_user_1) + .with_context( + active_ids=[self.invoice2.id, self.invoice3.id], + active_model="account.move", + ) + .create( + { + "journal_id": self.cash.id, + } + ) + ) + + res = wiz.action_create_payments() + + expect = {"type": "ir.actions.act_window", "res_model": "account.payment"} + self.assertDictEqual( + expect, + {k: v for k, v in res.items() if k in expect}, + "There was an error and the two invoices were not merged.", + ) diff --git a/account_invoice_view_payment/views/account_move_view.xml b/account_invoice_view_payment/views/account_move_view.xml new file mode 100644 index 00000000000..a857ddc288a --- /dev/null +++ b/account_invoice_view_payment/views/account_move_view.xml @@ -0,0 +1,22 @@ + + + + account.move.form + account.move + + + + + + + + diff --git a/setup/account_invoice_view_payment/odoo/addons/account_invoice_view_payment b/setup/account_invoice_view_payment/odoo/addons/account_invoice_view_payment new file mode 120000 index 00000000000..5056841a345 --- /dev/null +++ b/setup/account_invoice_view_payment/odoo/addons/account_invoice_view_payment @@ -0,0 +1 @@ +../../../../account_invoice_view_payment \ No newline at end of file diff --git a/setup/account_invoice_view_payment/setup.py b/setup/account_invoice_view_payment/setup.py new file mode 100644 index 00000000000..28c57bb6403 --- /dev/null +++ b/setup/account_invoice_view_payment/setup.py @@ -0,0 +1,6 @@ +import setuptools + +setuptools.setup( + setup_requires=['setuptools-odoo'], + odoo_addon=True, +)