Projet

Général

Profil

0001-ogone-update-list-of-accepted-sha-in-out-parameters-.patch

Frédéric Péters, 10 août 2017 11:03

Télécharger (1,35 ko)

Voir les différences:

Subject: [PATCH] ogone: update list of accepted sha-in/out parameters (#17956)

 eopayment/ogone.py | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)
eopayment/ogone.py
15 15
ENVIRONMENT_PROD_URL = 'https://secure.ogone.com/ncol/prod/orderstandard.asp'
16 16
ENVIRONMENT = [ENVIRONMENT_TEST, ENVIRONMENT_PROD]
17 17

  
18
# https://payment-services.ingenico.com/ogone/support/~/media/kdb/integration%20guides/sha-in_params.ashx
18 19
SHA_IN_PARAMS = """
19 20
ACCEPTANCE
20 21
ACCEPTURL
......
338 339
WEIGHTUNIT
339 340
WIN3DS
340 341
WITHROOT
342
XDL
341 343
""".split()
342 344

  
345
# https://payment-services.ingenico.com/ogone/support/~/media/kdb/integration%20guides/sha-out_params.ashx
343 346
SHA_OUT_PARAMS = """
344 347
AAVADDRESS
345 348
AAVCHECK
......
391 394
NCERROR
392 395
ORDERID
393 396
PAYID
397
PAYIDSUB
394 398
PAYMENT_REFERENCE
395 399
PM
396 400
SCO_CATEGORY
......
401 405
SUBBRAND
402 406
SUBSCRIPTION_ID
403 407
TRXDATE
404
VC"""
408
VC
409
""".split()
405 410

  
406 411
class Payment(PaymentCommon):
407 412
    # See http://payment-services.ingenico.com/fr/fr/ogone/support/guides/integration%20guides/e-commerce
408
-