9 lines
314 B
Python
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',),
|
|
}
|