13 lines
428 B
Python
13 lines
428 B
Python
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
|
|
|
# Mapping of transaction states to Buckaroo status codes.
|
|
# See https://www.pronamic.nl/wp-content/uploads/2013/04/BPE-3.0-Gateway-HTML.1.02.pdf for the
|
|
# exhaustive list of status codes.
|
|
STATUS_CODES_MAPPING = {
|
|
'pending': (790, 791, 792, 793),
|
|
'done': (190,),
|
|
'cancel': (890, 891),
|
|
'refused': (690,),
|
|
'error': (490, 491, 492,),
|
|
}
|