Using mongo. The app needs to allow shopping at different kinds of locations. Shops share some of the products in their offer, some are unique. Each shop sets their own prices for each product (many might probably be the same prices but that's not clear yet, probably not).
My approach so far was to create a Product
model, which would just have the name, description, and category.
Then, for each shop, there would be a PriceList
created, by associating a price to each Product
, and thus having for a particular shop only products on offer which they actually sell.
But how to model this association? If I have a PriceList
for which I reference a Product
(e.g. by ID), then when browsing products, wouldn't that generate a huge overhead in that to generate the shop's pricelist there would be pricelist.length
amounts of queries querying the Product
model for the names and their categories?
The other idea I had was to have every pricelist have a list of all products with names, description, category and price, but then generating a new pricelist for a new shop seems to be cumbersome, as there's no independent Product
list from which to copy over items?
Any other suggestion?