Odoo18-Base/addons/payment_aps/const.py
2025-03-10 11:12:23 +07:00

9 lines
314 B
Python

# Part of Odoo. See LICENSE file for full copyright and licensing details.
# Mapping of transaction states to APS payment statuses.
# See https://paymentservices-reference.payfort.com/docs/api/build/index.html#transactions-response-codes.
PAYMENT_STATUS_MAPPING = {
'pending': ('19',),
'done': ('14',),
}