Skip to main content

Avalara integration for django-oscar

Project description

This package provides integration between Avalara and Oscar. Avalara is a service that provides accurate sales tax calculations in the US.

Useful documentation:

Status:

https://secure.travis-ci.org/tangentlabs/django-oscar-avalara.png?branch=master

Installation

Install from PyPI:

$ pip install django-oscar-avalara

or Github:

$ pip install git+https://github.com/tangentlabs/django-oscar-avalara.git

then add 'avalara' to INSTALLED_APPS.

Specify the following settings:

  • AVALARA_ACCOUNT_NUMBER

  • AVALARA_LICENSE_KEY

  • AVALARA_COMPANY_CODE

You should have been provided with these details when you signed up with Avalara.

When not in production, set AVALARA_TEST_MODE = True to make requests to the Avalara development server.

This package uses a named logger 'avalara' so it is normally useful to define handlers to this logger.

Usage

To integrate Avalara into checkout, you need to override two methods from the checkout view class PaymentDetailsView.

First override build_submission to apply taxes to the basket and shipping method:

from oscar.apps.checkout import views
from django.contrib import messages
from django.template import loader

import avalara

class PaymentDetailsView(views.PaymentDetailsView):

    ...

    def build_submission(self, **kwargs):
        submission = super(PaymentDetailsView, self).build_submission(**kwargs)

        # Fetch and apply taxes to submission dict
        try:
            avalara.apply_taxes_to_submission(submission)
        except avalara.InvalidAddress, e:
            msg = loader.render_to_string(
                'avalara/messages/invalid_address.html',
                {'error': e.message})
            messages.error(self.request, msg, extra_tags="safe noicon")

        return submission

Here we are passing the submission dict to apply_taxes_to_submission which will look up the appropriate taxes and apply them in place to the basket and shipping method instances.

We also watch out for InvalidAddress exceptions which will be raised if Avalara is unable to find a tax jurisdiction for the passed shipping address.

Finally, override handle_successful_order to submit the placed order to Avalara:

from oscar.apps.checkout import views
from django.contrib import messages
from django.template import loader

import avalara

class PaymentDetailsView(views.PaymentDetailsView):

    ...

    def handle_successful_order(self, order):
        response = super(PaymentDetailsView, self).handle_successful_order(
            order)

        # Submit tax information to Avalara
        try:
            avalara.submit(order)
        except Exception:
            # Tax can be re-submitted later so we swallow all possible
            # exceptions and log them.
            logger.error("Unable to submit tax information for order %s",
                         order.number, exc_info=True)

        return response

Here we pass the order instance to submit which will submit the tax information to Avalara for reporting. We also catch and log any exception as we don’t want order placement to show an error screen. If there is a problem talking to Avalara, we can manually resubmit the order later on.

Contributing

Clone the repo, create a virtualenv and run:

make install

to install all dependencies. Run the tests with:

./runtests.py

There is a sandbox site that you can browse and use to test the Avalara integration. Create it using:

make sandbox

and browse it after:

cd sandbox
./manage.py runserver

Note that you will need to have test credentials for Avalara in a private integration.py module.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

django-oscar-avalara-0.1.tar.gz (8.3 kB view details)

Uploaded Source

File details

Details for the file django-oscar-avalara-0.1.tar.gz.

File metadata

File hashes

Hashes for django-oscar-avalara-0.1.tar.gz
Algorithm Hash digest
SHA256 47daffd8fdfb32edb139b334bee72c1b9e3e0d11786571c2c9a2aba452a9c29d
MD5 60027c6e30ba66a5f9819d61eacff31c
BLAKE2b-256 7cebe6e4af7ea0a3a7dec2e7c759a476cb93cef93ae92ea3a51d9a8e517320b8

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page