12345678910111213141516171819202122232425262728293031323334353637 |
- # Part of Odoo. See LICENSE file for full copyright and licensing details.
- # Currency codes of the currencies supported by Mercado Pago in ISO 4217 format.
- # See https://api.mercadopago.com/currencies. Last seen online: 24 November 2022.
- SUPPORTED_CURRENCIES = [
- 'ARS', # Argentinian Peso
- 'BOB', # Boliviano
- 'BRL', # Real
- 'CLF', # Fomento Unity
- 'CLP', # Chilean Peso
- 'COP', # Colombian Peso
- 'CRC', # Colon
- 'CUC', # Cuban Convertible Peso
- 'CUP', # Cuban Peso
- 'DOP', # Dominican Peso
- 'EUR', # Euro
- 'GTQ', # Guatemalan Quetzal
- 'HNL', # Lempira
- 'MXN', # Mexican Peso
- 'NIO', # Cordoba
- 'PAB', # Balboa
- 'PEN', # Sol
- 'PYG', # Guarani
- 'USD', # US Dollars
- 'UYU', # Uruguayan Peso
- 'VEF', # Strong Bolivar
- 'VES', # Sovereign Bolivar
- ]
- # Mapping of transaction states to Mercado Pago payment statuses.
- # See https://www.mercadopago.com.mx/developers/en/reference/payments/_payments_id/get.
- TRANSACTION_STATUS_MAPPING = {
- 'pending': ('pending', 'in_process', 'in_mediation'),
- 'done': ('approved', 'refunded'),
- 'canceled': ('cancelled', 'null'),
- }
|