Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
0657763
[ADD] account_payment_order_return (#395)
Oct 13, 2017
8846d6a
[MIG] account_payment_order_return: Migration to 11.0
cubells Sep 21, 2018
218048e
[12.0][MIG] account_payment_order_return
kittiu Mar 29, 2019
18229e3
fix domain in payment_order_return
colmeirin Aug 19, 2020
0d208c7
[IMP] account_payment_order_return: black, isort, prettier
joao-p-marques Feb 11, 2021
275a302
[MIG] account_payment_order_return: Migration to 13.0
joao-p-marques Feb 12, 2021
f2188af
[FIX] account_payment_order_return: Set correct journal in tests to p…
victoralmau Mar 12, 2021
7cfaa4b
[FIX] account_payment_order_return: Fix tests
victoralmau Mar 15, 2021
ad311e2
[MIG] account_payment_order_return: Migration to 14.0
joao-p-marques Mar 17, 2021
3b13f35
[FIX] account_payment_order_return: Fix tests
joao-p-marques Apr 14, 2021
e11f613
account_payment_order_return 14.0.1.0.1
OCA-git-bot Apr 14, 2021
dae611c
[FIX] account_payment_order_return: Don't fail due to tz
pedrobaeza Apr 22, 2022
bb06225
[MIG][15.0]account_payment_order_return:Migration to 15.0
bizzappdev Mar 6, 2023
703ab4e
[IMP] account_payment_order_return: test performance improvement
josep-tecnativa Oct 16, 2023
1d41a96
[BOT] post-merge updates
OCA-git-bot Oct 17, 2023
00d0747
[MIG] account_payment_order_return: Migration to 16.0
almumu Sep 26, 2024
4950683
[BOT] post-merge updates
OCA-git-bot Oct 1, 2024
d391240
Added translation using Weblate (Italian)
mymage Oct 3, 2024
c0b7b74
Translated using Weblate (Italian)
mymage Oct 3, 2024
080bfff
[IMP] account_payment_order_return: black, isort, prettier
JasminSForgeFlow Mar 24, 2025
d482412
[MIG] account_payment_order_return: Migration to 18.0
JasminSForgeFlow Mar 25, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
101 changes: 101 additions & 0 deletions account_payment_order_return/README.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,101 @@
============================
Account Payment Order Return
============================

..
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! This file is generated by oca-gen-addon-readme !!
!! changes will be overwritten. !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! source digest: sha256:37cd11d39abd9d084c0bd46f8ba329b99d893c74a04374515d9aba8101cfcb91
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!

.. |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%2Fbank--payment-lightgray.png?logo=github
:target: https://github.com/OCA/bank-payment/tree/18.0/account_payment_order_return
:alt: OCA/bank-payment
.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png
:target: https://translation.odoo-community.org/projects/bank-payment-18-0/bank-payment-18-0-account_payment_order_return
: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/bank-payment&target_branch=18.0
:alt: Try me on Runboat

|badge1| |badge2| |badge3| |badge4| |badge5|

This module adds a check in the wizard where move lines are imported
into payment order. This check lets include in selection lines from
invoices linked to a payment return.

**Table of contents**

.. contents::
:local:

Installation
============

This module is auto-installed when you install *account_payment_return*
and *account_payment_order*.

Usage
=====

1. Go to Invoicing > Customers > Debit Orders.
2. Create a new record.
3. Click on button "Create Payment Lines from Journal Items" to open the
wizard.
4. Click on the "Include move lines from returns" check.
5. Fill other options.
6. Click on button "Add All Move Lines".

Bug Tracker
===========

Bugs are tracked on `GitHub Issues <https://github.com/OCA/bank-payment/issues>`_.
In case of trouble, please check there if your issue has already been reported.
If you spotted it first, help us to smash it by providing a detailed and welcomed
`feedback <https://github.com/OCA/bank-payment/issues/new?body=module:%20account_payment_order_return%0Aversion:%2018.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.

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

Credits
=======

Authors
-------

* Tecnativa

Contributors
------------

- Tecnativa <https://www.tecnativa.com>

- Luis M. Ontalba
- Vicent Cubells
- João Marques

- Kitti U. <[email protected]>

Maintainers
-----------

This module is maintained by the OCA.

.. image:: https://odoo-community.org/logo.png
:alt: Odoo Community Association
:target: https://odoo-community.org

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

This module is part of the `OCA/bank-payment <https://github.com/OCA/bank-payment/tree/18.0/account_payment_order_return>`_ project on GitHub.

You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.
3 changes: 3 additions & 0 deletions account_payment_order_return/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# License AGPL-3 - See http://www.gnu.org/licenses/agpl-3.0.html

from . import wizards
16 changes: 16 additions & 0 deletions account_payment_order_return/__manifest__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# Copyright 2017 Tecnativa - Luis M. Ontalba
# Copyright 2021 Tecnativa - João Marques
# License AGPL-3 - See http://www.gnu.org/licenses/agpl-3.0.html

{
"name": "Account Payment Order Return",
"version": "18.0.1.0.0",
"category": "Banking addons",
"author": "Tecnativa, Odoo Community Association (OCA)",
"website": "https://github.com/OCA/bank-payment",
"depends": ["account_payment_return", "account_payment_order"],
"data": ["wizards/account_payment_line_create_view.xml"],
"license": "AGPL-3",
"installable": True,
"auto_install": True,
}
24 changes: 24 additions & 0 deletions account_payment_order_return/i18n/account_payment_order_return.pot
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * account_payment_order_return
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.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_payment_order_return
#: model:ir.model.fields,field_description:account_payment_order_return.field_account_payment_line_create__include_returned
msgid "Include move lines from returns"
msgstr ""

#. module: account_payment_order_return
#: model:ir.model,name:account_payment_order_return.model_account_payment_line_create
msgid "Wizard to create payment lines"
msgstr ""
30 changes: 30 additions & 0 deletions account_payment_order_return/i18n/ca.po
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * account_payment_order_return
#
# Translators:
# Marc Tormo i Bochaca <[email protected]>, 2017
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 9.0c\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-10-15 00:40+0000\n"
"PO-Revision-Date: 2019-10-07 09:24+0000\n"
"Last-Translator: Jaume Planas <[email protected]>\n"
"Language-Team: Catalan (https://www.transifex.com/oca/teams/23907/ca/)\n"
"Language: ca\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 3.8\n"

#. module: account_payment_order_return
#: model:ir.model.fields,field_description:account_payment_order_return.field_account_payment_line_create__include_returned
msgid "Include move lines from returns"
msgstr "Inclou apunts de les devolucions"

#. module: account_payment_order_return
#: model:ir.model,name:account_payment_order_return.model_account_payment_line_create
msgid "Wizard to create payment lines"
msgstr "Assistent per crear línies de pagament"
25 changes: 25 additions & 0 deletions account_payment_order_return/i18n/ca_ES.po
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * account_payment_order_return
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 12.0\n"
"Report-Msgid-Bugs-To: \n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"Language: ca_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_payment_order_return
#: model:ir.model.fields,field_description:account_payment_order_return.field_account_payment_line_create__include_returned
msgid "Include move lines from returns"
msgstr ""

#. module: account_payment_order_return
#: model:ir.model,name:account_payment_order_return.model_account_payment_line_create
msgid "Wizard to create payment lines"
msgstr ""
29 changes: 29 additions & 0 deletions account_payment_order_return/i18n/de.po
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * account_payment_order_return
#
# Translators:
# Akim Juillerat <[email protected]>, 2017
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 9.0c\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-10-15 00:40+0000\n"
"PO-Revision-Date: 2017-10-15 00:40+0000\n"
"Last-Translator: Akim Juillerat <[email protected]>, 2017\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"

#. module: account_payment_order_return
#: model:ir.model.fields,field_description:account_payment_order_return.field_account_payment_line_create__include_returned
msgid "Include move lines from returns"
msgstr ""

#. module: account_payment_order_return
#: model:ir.model,name:account_payment_order_return.model_account_payment_line_create
msgid "Wizard to create payment lines"
msgstr "Assistent zum Anlegen von Zahlungszeilen"
27 changes: 27 additions & 0 deletions account_payment_order_return/i18n/es.po
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * account_payment_order_return
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 9.0c\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-10-13 08:31+0000\n"
"PO-Revision-Date: 2017-10-13 08:31+0000\n"
"Last-Translator: <>\n"
"Language-Team: \n"
"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: \n"

#. module: account_payment_order_return
#: model:ir.model.fields,field_description:account_payment_order_return.field_account_payment_line_create__include_returned
msgid "Include move lines from returns"
msgstr "Incluir efectos devueltos"

#. module: account_payment_order_return
#: model:ir.model,name:account_payment_order_return.model_account_payment_line_create
msgid "Wizard to create payment lines"
msgstr "Asistente para crear líneas de pago"
36 changes: 36 additions & 0 deletions account_payment_order_return/i18n/es_AR.po
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * account_payment_order_return
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 14.0\n"
"Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2021-04-01 03:48+0000\n"
"Last-Translator: Ignacio Buioli <[email protected]>\n"
"Language-Team: none\n"
"Language: es_AR\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 4.3.2\n"

#. module: account_payment_order_return
#: model:ir.model.fields,field_description:account_payment_order_return.field_account_payment_line_create__include_returned
msgid "Include move lines from returns"
msgstr "Incluir líneas de movimiento de devoluciones"

#. module: account_payment_order_return
#: model:ir.model,name:account_payment_order_return.model_account_payment_line_create
msgid "Wizard to create payment lines"
msgstr "Asistente para crear líneas de pago"

#~ msgid "Display Name"
#~ msgstr "Mostrar Nombre"

#~ msgid "ID"
#~ msgstr "ID"

#~ msgid "Last Modified on"
#~ msgstr "Última modificación en"
30 changes: 30 additions & 0 deletions account_payment_order_return/i18n/fr.po
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * account_payment_order_return
#
# Translators:
# OCA Transbot <[email protected]>, 2017
# Quentin THEURET <[email protected]>, 2017
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 9.0c\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-12-02 02:22+0000\n"
"PO-Revision-Date: 2017-12-02 02:22+0000\n"
"Last-Translator: Quentin THEURET <[email protected]>, 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_payment_order_return
#: model:ir.model.fields,field_description:account_payment_order_return.field_account_payment_line_create__include_returned
msgid "Include move lines from returns"
msgstr "Inclure les écritures depuis les retours"

#. module: account_payment_order_return
#: model:ir.model,name:account_payment_order_return.model_account_payment_line_create
msgid "Wizard to create payment lines"
msgstr "Assistant pour créer des lignes de paiement"
30 changes: 30 additions & 0 deletions account_payment_order_return/i18n/fr_FR.po
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * account_payment_order_return
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 14.0\n"
"Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2021-04-10 16:46+0000\n"
"Last-Translator: Yves Le Doeuff <[email protected]>\n"
"Language-Team: none\n"
"Language: fr_FR\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Generator: Weblate 4.3.2\n"

#. module: account_payment_order_return
#: model:ir.model.fields,field_description:account_payment_order_return.field_account_payment_line_create__include_returned
msgid "Include move lines from returns"
msgstr "Inclure les lignes d'écritures des retours"

#. module: account_payment_order_return
#: model:ir.model,name:account_payment_order_return.model_account_payment_line_create
msgid "Wizard to create payment lines"
msgstr "Assistant pour créer des lignes de paiement"

#~ msgid "Last Modified on"
#~ msgstr "Dernière modification"
27 changes: 27 additions & 0 deletions account_payment_order_return/i18n/it.po
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * account_payment_order_return
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0\n"
"Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2024-10-03 17:06+0000\n"
"Last-Translator: mymage <[email protected]>\n"
"Language-Team: none\n"
"Language: it\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 5.6.2\n"

#. module: account_payment_order_return
#: model:ir.model.fields,field_description:account_payment_order_return.field_account_payment_line_create__include_returned
msgid "Include move lines from returns"
msgstr "Includere righe movimento dai rimborsi"

#. module: account_payment_order_return
#: model:ir.model,name:account_payment_order_return.model_account_payment_line_create
msgid "Wizard to create payment lines"
msgstr "Procedura guidata creazione righe di pagamento"
3 changes: 3 additions & 0 deletions account_payment_order_return/pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[build-system]
requires = ["whool"]
build-backend = "whool.buildapi"
5 changes: 5 additions & 0 deletions account_payment_order_return/readme/CONTRIBUTORS.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
- Tecnativa \<<https://www.tecnativa.com>\>
- Luis M. Ontalba
- Vicent Cubells
- João Marques
- Kitti U. \<<[email protected]>\>
Loading