Store credit / virtual currency application for Django Oscar?

I want to have a credit model of a store for customers where virtual currency is stored. This store credit application will store points (added on return or some scheme) that can be used to pay for products. Is django-oscar-accounts the right app for this? Or is there any other way, or should I code myself?

+4
source share
1 answer

For those who read this question, it is already 4 years old when I write this answer, but this question deserves an answer.

My opinion

Is django-oscar-account the right app for this? Or is there some other way, or should I code myself?

Yes, of course, this is so, of course, you can implement the solution yourself, but django-oscar-accounts have already implemented this (and other) functions.

The Oscar framework is designed in such a way that the flow of payments depends on the developer, so let's try using django-oscar-accounts . This is a very good app!

0
source

All Articles