コード例 #1
0
ファイル: facade.py プロジェクト: evonove/django-oscar-paypal
def confirm_transaction(payer_id, token, amount, currency):
    """
    Confirm the payment action.
    """
    return do_txn(payer_id,
                  token,
                  amount,
                  currency,
                  action=_get_payment_action())
コード例 #2
0
def confirm_transaction(payer_id, token, amount, currency):
    """
    Confirm the payment action.
    """
    return do_txn(payer_id, token, amount, currency,
                  action=_get_payment_action())