awesto/cookiecutter-django-shop

Consumer to consumer (C2C) ecommerce

Hadar11 opened this issue · 1 comments

Hello,
Can you please advise if django-shop allows Consumer to consumer (C2C) ecommerce requirements to be handled, the reason for my question https://pypi.org/project/django-shop/ indicates to shop as "... Most e-commerce systems are shipped with a predefined database model for products. But products can vary a lot, and it simply is impossible to create a model which fits for all of them....".

jrief commented

Yes, you can do that. Actually, we as a company implemented a site, based on django-SHOP for a customer of us.
In general, you have to ask yourself, whom you want to give add/change/delete-access to a product. You then can either add a simple foreign key onto the User model, or build more sophisticated access schemas using a many-to-many key to users and groups.
This of course all depends on your requirements and there is no one-size-fits-all solution for all use cases.