Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Multi-supplier online shopping platform

I have been tasked by a client to rebuild an E-Commerce platform. The goal is an online shop on which vehicles are sold. The specialty is that it's supposed to be multi-supplier capable, i.e. external suppliers will have their own login back-end where they can manage their listings, add new ones, view their sales, etc.

The shop shows all the suppliers' products in one big catalogue that should ideally support some options like sorting and filtering, but they are not a requirement. Orders are transmitted to each relevant supplier, and the administrator, by E-Mail.

The ordering process is very simple - it's essentially just taking the ordered item out of the catalogue, and informing the supplier (and the administrator) that the item has been ordered. No online check-out / payments are required, although they are nice to have as an option.

All the on-line shopping systems I know are targeted at one single administrator.

Are there shop systems out there that can handle what I need?

Requirements:

  • Top priority: Quality code. Preferably PHP 5 and object oriented. I don't care about the exact feature set of the product as long as the existing code is nice and neat to work with.

  • Access control: Suppliers can log in and add and manage own products; have no access to the rest of the system. Administrators can manage listings and configure the shop. Administrators create supplier accounts

  • Must be multi-language or localized to German

  • The sales process is very simple: An E-Mail to the supplier and to the administrator, containing the buyer's data, is enough.

  • No need for on-line payment/checkout, although it is a welcome extension

  • Open Source is preferred, but a commercial solution is not out of the question if the product is really, really good and well documented

As long as the basic product is fine and supports the basic catalogue and user management necessary for this, all further features are negotiable (i.e. I'll add them myself if necessary.)

like image 682
Pekka Avatar asked Jul 17 '10 21:07

Pekka


People also ask

What is a multi vendor platform?

A multi-vendor ecommerce platform is a turnkey solution inherently designed to build online marketplaces where multiple sellers can list/sell their products. The multi-vendor ecommerce platform includes all the basic e-commerce functionalities and essential integrations to streamline/manage marketplace operations.

Is Amazon a multi vendor marketplace?

Product Marketplace It connects multiple vendors and buyers in a single platform. E.g.: Amazon is one of the biggest ecommerce platforms, where multiple vendors sell various products to the customers.

Can Shopify do multi vendor option?

Shopify does not offer multi vendor functionality by default and if you want to make an online marketplace with Shopify, you'll have to look for third-party extensions. Webkul Marketplace App is one of the most popular extensions for Shopify.


1 Answers

If no payment methods and checkout is involved, it is surely better to write from scratch. With any of the existing systems, you will just have the overhead of code that is not actually used. Also, not so many systems support searching and filtering by parameters and this seems to be a core feature for such a large project.

like image 123
Ilya Vassilevsky Avatar answered Sep 28 '22 19:09

Ilya Vassilevsky