File: const.py

package info (click to toggle)
odoo 18.0.0%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 878,716 kB
  • sloc: javascript: 927,937; python: 685,670; xml: 388,524; sh: 1,033; sql: 415; makefile: 26
file content (62 lines) | stat: -rw-r--r-- 1,535 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
# Part of Odoo. See LICENSE file for full copyright and licensing details.

# The codes of the payment methods to activate when Worldline is activated.
DEFAULT_PAYMENT_METHOD_CODES = {
    # Primary payment methods.
    'card',
}

# Mapping of payment method codes to Worldline codes.
# See https://docs.direct.worldline-solutions.com/en/payment-methods-and-features/index.
PAYMENT_METHODS_MAPPING = {
    'alipay_plus': 5405,
    'amex': 2,
    'bancontact': 3012,
    'bizum': 5001,
    'cartes_bancaires': 130,
    'cofidis': 3012,
    'diners': 132,
    'discover': 128,
    'eps': 5406,
    'floa_bank': 5139,
    'ideal': 809,
    'jcb': 125,
    'klarna': 3301,
    'maestro': 117,
    'mastercard': 3,
    'mbway': 5908,
    'multibanco': 5500,
    'p24': 3124,
    'paypal': 840,
    'post_finance_pay': 3203,
    'twint': 5407,
    'upi': 56,
    'visa': 1,
    'wechat_pay': 5404,
}

# The payment methods that involve a redirection to 3rd parties by Worldline.
REDIRECT_PAYMENT_METHODS = {
    'alipay_plus',
    'bizum',
    'eps',
    'floa_bank',
    'ideal',
    'klarna',
    'mbway',
    'multibanco',
    'p24',
    'paypal',
    'post_finance_pay',
    'twint',
    'wechat_pay',
}

# Mapping of transaction states to Worldline's payment statuses.
# See https://docs.direct.worldline-solutions.com/en/integration/api-developer-guide/statuses.
PAYMENT_STATUS_MAPPING = {
    'pending': ('CREATED', 'AUTHORIZATION_REQUESTED'),
    'done': ('CAPTURED',),
    'cancel': ('CANCELLED',),
    'declined': ('REJECTED',),
}