Dear Django community
We are considering the development of our new website on Django but as a beginner developer/Django developer I want to make sure Django is the right choice for us.
For commercial reasons we offer our B2B clients somewhat complex discount system and we need to replicate it in Django. We have:
- General discount depending on the type of client (10/15/20%)
- Additional discount for a specific brand or type of products (10/15/20%)
- Discount for a credit a client has accumulated for the volume of his purchases
- There are 2 more discounts but I won’t include them here to make it easier to understand the question.
So one client can have 15% general discounts and 20% discount for the category “shoes”. In the case he buys shoes only the 20% discount (Discount 2) should be applied. Then if the client wants he can get additional discount from the credit he has (Discount 3).
Currently we have this setup and working on a PrestaShop with 3/4 modules (using client and product groups) and the website is working very slow because some of the calculations are done on the front-end.
So my questions are:
-
Is this discount structure feasible in a Django Ecommerce Website?
-
Can you give me some source/documentation where I can learn how this setup should be planned? I understand that there are several ways this can be achieved and this is why I would love to see the possible solutions.
P.D. I tried to find information about my question but was not able. If there is please direct me to it.
Thank you in advance
Yorgo