Order approval module for django-oscar
Project description
django-oscar-approval
Order/Product approval extension for Django Oscar
Getting started
Installation
Add 'oscar_approval' to INSTALLED_APPS and run:
./manage.py syncdb
Configuration
Edit your settings.py to set the following settings (example):
OSCAR_LINE_APPROVAL_STATUS = statuses.PENDING_AUTHORISATION OSCAR_ORDER_APPROVAL_STATUS = statuses.PENDING_AUTHORISATION
Include approval urls in your application:
from oscar_approval.apps.approval.app import application as approval_application (r'^approval/', include(approval_application.urls)),
Integration into the project
You may choose to integrate any of the following components:
Product model extension:
from oscar_approval.apps.catalogue.abstract_models import AbstractProduct as ApprovalAbstractProduct ... class Product(AbstractProduct, ApprovalAbstractProduct): ...
Basic behaviour on receiving 'order_placed' signal:
from oscar.apps.order.signals import order_placed from oscar_approval.apps.order.receivers import receive_order_placed order_placed.connect(receive_order_placed)
This receiver simply sets OSCAR_LINE_APPROVAL_STATUS and OSCAR_ORDER_APPROVAL_STATUS for lines and orders that require approval.
Pin authorisation tab in the user profile:
…
Dashboard application for managing reviewers and viewing approval event logs:
Extend user profile:
from oscar_approval.apps.customer.abstract_models import AbstractProfile as ApproverProfile class Profile(ApproverProfile): ...
Include dashboard application urls:
from oscar_approval.apps.dashboard.app import application as approval_dashboard_application (r'^dashboard/approval/', include(approval_dashboard_application.urls))
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
File details
Details for the file django-oscar-approval-0.1.tar.gz
.
File metadata
- Download URL: django-oscar-approval-0.1.tar.gz
- Upload date:
- Size: 7.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | bb51ae8ea77c513cd7efb44db05fcc90b4cffd66c4520f18a8523405c1f8b09e |
|
MD5 | 0ea1c5a07c654b7cb2031cf2812dd1bf |
|
BLAKE2b-256 | a58066824ce501103acbbc8f5ff87cf2b5e3c2c56002787e3e9026b6a723ab50 |