const.py 314 B

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