Softpedia
 


LINUX CATEGORIES:



GLOBAL PAGES >>
NEWS ARCHIVE >>
SOFTPEDIA REVIEWS >>
MEET THE EDITORS >>
WEEK'S BEST
  • Linux Kernel 3.9.3 / 3....
  • LibreOffice 3.6.6 / 4.0.3
  • MPlayer 1.1.1
  • systemd 204
  • Arch Linux 2013.05.01
  • Blender 2.67a
  • KDE Software Compilatio...
  • CrunchBang Linux Stable...
  • Elementary OS 0.1 / 0.2...
  • SystemRescueCd 3.6.0
  • Home > Linux > Internet > Django Plugins

    django-oscar-paypal 0.4.1

    Download button

    No screenshots available
    Downloads: 131  Tell us about an update
    User Rating:
    Rated by:
    NOT RATED
    0 user(s)
    Developer:

    License / Price:

    Last Updated:

    Category:
    David Winterbottom | More programs
    BSD License / FREE
    September 4th, 2012, 10:03 GMT [view history]
    ROOT / Internet / Django Plugins

     Read user reviews (0)  Refer to a friend  Subscribe

    django-oscar-paypal description

    PayPal payment module for django-oscar

    `PayPal Express` is an API for integrating PayPal payments into an ecommerce site. A typical implementation involves redirecting the user to PayPal's site where they enter their shipping and billing information before arriving back on the merchant site to confirm the order. It can also be used purely for payment, with shipping details being collected on the merchant site.

    django-oscar-paypal is a Django app that provides integration between PayPal Express and django-oscar.

    Installation

    First, you'll need to create a sandbox merchant account with PayPal - this will provide a username, password and 'signature' which are used to authenticate API requests.

    If you want to test your installation in a browser (which you should), then you'll need to also create a sandbox buyer account so you can checkout.

    Fetch package (not ready just yet)::

        pip install django-oscar-paypal

    Add the following settings using the details from your sandbox buyer account::

        PAYPAL_API_USERNAME = 'test_xxxx.gmail.com'
        PAYPAL_API_PASSWORD = '123456789'
        PAYPAL_API_SIGNATURE = '...'

    Augment your ``INSTALLED_APPS`` to include ``paypal.express`` and run syncdb to create the appropriate models.

    Next, you need to add the PayPal URLs to your URL config.  This can be done as follows:

        from django.contrib import admin
        from oscar.app import shop

        urlpatterns = patterns('',
            (r'^admin/', include(admin.site.urls)),
            (r'^checkout/paypal/', include('paypal.express.urls')),
            (r'', include(shop.urls)),


    Finally, you need to modify oscar's basket template to include the button that links to PayPal.  This can be done by creating a new template ``templates/basket/basket.html`` with content:

        {% extends 'templates/basket/basket.html' %}

        {% block formactions %}
        < div class="form-actions" >
            < a href="{% url paypal-redirect %}" >< img src="https://www.paypal.com/en_US/i/btn/btn_xpressCheckout.gif" align="left" style="margin-right:7px;" >< /a >
            < a href="{% url checkout:index %}" class="pull-right btn btn-large btn-primary" >Proceed to checkout< /a >
        < /div >
        {% endblock %}


    Note that we extending the ``basket/basket.html`` template from oscar and overriding the ``formactions`` block.  For this trick to work, you need to ensure that you have ``OSCAR_PARENT_TEMPLATE_DIR`` in your ``TEMPLATE_DIRS`` setting:

        import os
        location = lambda x: os.path.join(os.path.dirname(os.path.realpath(__file__)), x)
        from oscar import OSCAR_PARENT_TEMPLATE_DIR
        TEMPLATE_DIRS = (
            location('templates'),
            os.path.join(OSCAR_PARENT_TEMPLATE_DIR, 'templates'),
            OSCAR_PARENT_TEMPLATE_DIR,
        )


    If anything is unclear or not workin as expected then review how the 'sandbox` installation is set-up.  This is a working oscar install that uses PayPal Express.

    Settings

    There's a smorgasboard of options that can be used, as there's many ways to customised the Express Checkout experience.  Most of these are handled by simple settings.

    * ``PAYPAL_SANDBOX_MODE`` - whether to use PayPal's sandbox.  Defaults to ``True``.
    * ``PAYPAL_CURRENCY`` - the currency to use for transactions.  Defaults to ``GBP``.
    * ``PAYPAL_API_VERSION`` - the version of API used (defaults to ``60.0``)
    * ``PAYPAL_ALLOW_NOTE`` - whether to allow the customer to enter a note (defaults to ``True``)
    * ``PAYPAL_CUSTOMER_SERVICES_NUMBER`` - customer services number to display on the PayPal review page.
    * ``PAYPAL_HEADER_IMG`` - the absolute path to a header image
    * ``PAYPAL_HEADER_BACK_COLOR`` - background color (6-char hex value) for header background
    * ``PAYPAL_HEADER_BORDER_COLOR`` - background color (6-char hex value) for header border
    * ``PAYPAL_CALLBACK_TIMEOUT`` - timeout in seconds for the instant update callback

    Some of these options, like the display ones, can be set in your PayPal merchant profile.


    Product's homepage

    Requirements:

    · Python
    · Django
    · django-oscar

    What's New in This Release: [ read full changelog ]

    · Fixes a bug where the second line of a user's address was not being used to create the order shipping address.

      


    TAGS:

    PayPal payment | django-oscar PayPal | Django | PayPal | payment

    Go to top

    WindowsGamesDriversMacLinuxScriptsMobileHandheldNews

    SUBMIT PROGRAM   |   ADVERTISE   |   GET HELP   |   SEND US FEEDBACK   |   RSS FEEDS   |   UPDATE YOUR SOFTWARE   |   ROMANIAN FORUM