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
0.2.x - Django-SHOP v0.11.x compatibility
0.1.x - Django-SHOP v0.10.2 compatibility
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:
ISO4217Exponent and symbol populating using ./manage.py currencies iso (This automatically imports the currencies set in the SHOP_CURRENCIES setting)
Currency factors populating using ./manage.py updatecurrencies yahoo (This also sets the base currency to SHOP_DEFAULT_CURRENCY)
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
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Hashes for djangoshop-currencies-0.2.0.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | fa8cc4dd225532a0d7de92e11b5525fea0e224601753edc8ad989b88ae1d2cd1 |
|
MD5 | 205a68364af9f57d6ea335449638d5d4 |
|
BLAKE2b-256 | adcfb64e68f752e27657ea56601dd9731b94f77002790ede668b12f3143d93f2 |