Having the Supplier to enter the prices ,

How to configure and adapt Aimeos based shops as developer
Forum rules
Always add your Aimeos and PHP version as well as your environment (Linux/Mac/Win)
Spam and unrelated posts will be removed immediately!
cypriotxx
Posts: 12
Joined: 06 Nov 2017, 17:09

Having the Supplier to enter the prices ,

Post by cypriotxx » 17 Nov 2017, 15:47

Hi there,
i would like to have a button on the CART page "submit for quote" so the CART would be sent to our supplier to price the chosen products individually ,
Buyer=shopper=user

for example
the shopper will add all the products he desire in to the CART and when ready to pay they will goto CART and click to Submit for Quote ,
Supplier will receive an email with unique link for the CART , so supplier will be able to enter his prices or tick the ones out of stock etc and the delivery cost , and once supplier submits the prices ,...
we would like to set commission rate in the admin somewhere? so it would be added on top what supplier submitted each time auto.
and shopper would receive and email to visit the CART to checkout as normal ...


where do we start with this ? how do we go about it ? what fields is in DB already we can use is it all available what we looking for ?

Thank you so much

User avatar
aimeos
Administrator
Posts: 7873
Joined: 01 Jan 1970, 00:00

Re: Having the Supplier to enter the prices ,

Post by aimeos » 18 Nov 2017, 11:47

You have to implement something like this:
- Save the basket using the store() method of the order base manager
- Send a link with the ID from the mshop_order_base table to the vendor
- Implement a interface for the vendors where they can enter the prices and remove out of stock products
- Send an e-mail to the customer with a link that uses load() to get the offer and add the products to the basket
- The customer can then walk through the checkout process and pay

In the payment step of the checkout process, you can then add a commission fee using e.g. the "Costs" decorator:
https://github.com/aimeos/aimeos-core/b ... /Costs.php
Professional support and custom implementation are available at Aimeos.com
If you like Aimeos, Image give us a star

cypriotxx
Posts: 12
Joined: 06 Nov 2017, 17:09

Re: Having the Supplier to enter the prices ,

Post by cypriotxx » 18 Nov 2017, 14:25

Thank you so much ,
How about multibuy quantity discounts ? How can we implement that to work auto for all customers ?
Like
Buy 5+ $xxx
Buy 10+ $xxx
Buy 15+ $xxx
And so on

Where do we start with this one ?

Thank you

User avatar
aimeos
Administrator
Posts: 7873
Joined: 01 Jan 1970, 00:00

Re: Having the Supplier to enter the prices ,

Post by aimeos » 19 Nov 2017, 13:16

Block pricing is already part of Aimeos. Add more than one price to your product and enter different quantities for each price.
Professional support and custom implementation are available at Aimeos.com
If you like Aimeos, Image give us a star

Post Reply