Odoo18-Base/addons/payment_custom
2025-03-04 12:23:19 +07:00
..
controllers init 2025-01-06 10:57:38 +07:00
data init 2025-01-06 10:57:38 +07:00
i18n merge with official 2025-03-04 12:23:19 +07:00
models init 2025-01-06 10:57:38 +07:00
static init 2025-01-06 10:57:38 +07:00
tests init 2025-01-06 10:57:38 +07:00
views init 2025-01-06 10:57:38 +07:00
__init__.py init 2025-01-06 10:57:38 +07:00
__manifest__.py init 2025-01-06 10:57:38 +07:00
const.py init 2025-01-06 10:57:38 +07:00
README.md init 2025-01-06 10:57:38 +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.