Odoo18-Base/addons/payment_custom
2025-03-10 10:52:11 +07:00
..
controllers update 2025-03-10 10:52:11 +07:00
data update 2025-03-10 10:52:11 +07:00
i18n update 2025-03-10 10:52:11 +07:00
models update 2025-03-10 10:52:11 +07:00
static update 2025-03-10 10:52:11 +07:00
tests update 2025-03-10 10:52:11 +07:00
views update 2025-03-10 10:52:11 +07:00
__init__.py update 2025-03-10 10:52:11 +07:00
__manifest__.py update 2025-03-10 10:52:11 +07:00
const.py update 2025-03-10 10:52:11 +07:00
README.md update 2025-03-10 10:52:11 +07:00

Custom Payment Modes

Technical details

This module does not integrate with an API and, instead, offers a base for implementing payment providers with custom payment flows relying on payment instructions being displayed to the customer. This is done by immediately marking transactions as 'pending' to display their 'pending message'.

It defines a base Wire Transfer payment provider that allows making payments by bank transfer.

Supported features

  • Direct payment flow

Module history

  • 16.1
    • The default payment instructions message of Wire Transfer can be recomputed at any time after installation of the module. odoo/odoo#103903
  • 16.0
    • The custom_mode field is added to distinguish custom payment modes from other payment providers and to allow duplicating the base Wire Transfer provider in multi-company databases. odoo/odoo#99400
    • The module is no longer automatically installed with the payment module. odoo/odoo#99400
    • The module is renamed from payment_transfer to payment_custom. odoo/odoo#99400

Testing instructions

Wire Transfer can be tested indifferently in test or live mode as it does not make API requests.