I want to have a store credit model for customers where the virtual currency is stored. This store credit app 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 that ? Or is there any other way or I have to code myself ?
相关问题
- Django __str__ returned non-string (type NoneType)
- Django & Amazon SES SMTP. Cannot send email
- Django check user group permissions
- Django restrict pages to certain users
- UnicodeEncodeError with attach_file on EmailMessag
相关文章
- Profiling Django with PyCharm
- Why doesn't Django enforce my unique_together
- MultiValueDictKeyError in Django admin
- Django/Heroku: FATAL: too many connections for rol
- Django is sooo slow? errno 32 broken pipe? dcramer
- Django: Replacement for the default ManyToMany Wid
- Upgrading transaction.commit_manually() to Django
- UnicodeEncodeError when saving ImageField containi
For anyone reading this question has 4 years old at the moment I'm writing this answer, but this question deserves an answer.
My opinion
Yes, surely it is, you can, of course, implement the solution your self, but
django-oscar-accounts
has this (and others) features already implemented.Oscar framework is designed in a way that the payment flow is up to the developer, so, go ahead and give a try to
django-oscar-accounts
. Is a very good app!