Skip to main content

Django-SHOP integration with django-currencies

Project description

Django-SHOP integration with django-currencies

Introduction

This module allows Django-SHOP implementations to integrate live currency feeds. This will allow you to offer your shop product prices in the user’s chosen currency.

The module is currently compatible with Django v1.10.7. This documentation assumes a working knowledge of Django and Django-SHOP.

Release History

TODO

Please let me know of you have any feature suggestions, or wish to implement any of the below:

  • Fix for the db initialisation warning below.

  • Tests.

  • Continuous build integration including compatibility testing with various python, Django and Django-SHOP versions.

Configuration

Follow the Readme for django-currencies. Install this module through pip: pip install djangoshop-currencies.

The Django-SHOP Money system has been extended to use django-currencies as a currency conversion backend. To enable this functionality your currencies configuration must satisfy the following requirements:

  1. ISO4217Exponent and symbol populating using ./manage.py currencies iso (This automatically imports the currencies set in the SHOP_CURRENCIES setting)

  2. Currency factors populating using ./manage.py updatecurrencies yahoo (This also sets the base currency to SHOP_DEFAULT_CURRENCY)

  3. Some currencies set to active in the admin interface

Usage

Replace the DefaultCartModifier with the provided CurrencyCartModifier in your shop settings:

SHOP_CART_MODIFIERS = (
    # provides the default cart lines
    'shop_currencies.modifiers.CurrencyCartModifier',
    ...

Use the Money conversion extension which provides the to(code) function as below. The additional base argument is used by the cart modifier.

from django.db import models
from currencies.utils import get_currency_code
from shop_currencies.money.fields import MoneyField

class MyModel(models.Model):
    unit_price = MoneyField()
    ...

    def get_price(self, request, base=False):
        if base:
            return self.unit_price
        else:
            session_currency_code = get_currency_code(request)
            return self.unit_price.to(session_currency_code)

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

djangoshop-currencies-0.2.0.tar.gz (7.0 kB view details)

Uploaded Source

File details

Details for the file djangoshop-currencies-0.2.0.tar.gz.

File metadata

File hashes

Hashes for djangoshop-currencies-0.2.0.tar.gz
Algorithm Hash digest
SHA256 fa8cc4dd225532a0d7de92e11b5525fea0e224601753edc8ad989b88ae1d2cd1
MD5 205a68364af9f57d6ea335449638d5d4
BLAKE2b-256 adcfb64e68f752e27657ea56601dd9731b94f77002790ede668b12f3143d93f2

See more details on using hashes here.

Supported by

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