如何将sandbox.paypal网站更改为django-merchant中的paypal网站?

时间:2012-01-13 03:56:52

标签: python django paypal django-paypal

我正在使用django-meerchant进行paypal付款http://readthedocs.org/docs/django-merchant/en/latest/offsite/paypal.html ...

我的观点有这段代码:

                            pay_pal = get_integration("pay_pal")
                            pay_pal.add_fields({
                                   "business": client.paypal_id,
                                   "item_name": product.name,
                                   "invoice": inst.trans_code,
                                   "notify_url": settings.BASE_DNS + str(client.id) + '/book/'+str(inst.id) +'/success/?booksaved=1',
                                   "return_url": settings.BASE_DNS + str(client.id) + '/book/'+str(inst.id) +'/success/?booksaved=1',
                                   "cancel_return": settings.BASE_DNS + str(client.id) + '/?booksaved=0',
                                   "amount": inst.book_charged})
                            return render_to_response("pay_pay.html", {"obj": pay_pal, "product": product.name, "amount": inst.totalcost},context_instance=RequestContext(request))  

我的模板pay_pay.html

{% extends "main_base_bookingpage.html" %}
{% load billing_tags %}

{% block content %}
    Required Parameters from the view
    <ul>
        <li> item_name : {{ product }}</li>
        <li> amount : {{ amount }}</li>
    </ul>
    {% paypal obj %}
{% endblock %}  

我的问题是如何更改它以便它将更改为paypal网站而不是更改为sandbox.paypal网站?

提前感谢...

1 个答案:

答案 0 :(得分:4)

根据文档,您可以在调用get_integrationpay_pal = get_integration("pay_pal", test_mode=False))时指定test_mode参数,或在设置文件中设置MERCHANT_TEST_MODE。此外,您可能还需要更改PAYPAL_TEST设置。

PS。我不与django-merchant合作,也不知道这是否有效,这只是来自文档的假设。