PDA

View Full Version : How can I ensure that quantity order is not over stock held?


lynette312402
05-13-2009, 12:56 AM
I have built a eCommerce website and want to make sure that the quantity order by a customer is not greater than the stock held is this possible and how?
I am using Dreamweaver PHP and have used eCart.

Ray Borduin
05-13-2009, 07:47 AM
It is only possible with a small amount of hand coding. The concept is that you keep track of the inventory in the products table as well as the last date and time that the inventory was updated. Then you store orders in the database as they are made also keeping track of the date and time of the purchase.

You can then update your SQL statement in your catalog to remove items that are out of stock or display the stock available with a nested select statement to remove the number sold from the number available the last time the inventory was updated.

Then you need a small amount of hand code on the shopping cart page to make sure when they update their quantities they don't try to change it to a number greater than what is available.

There is an example of this technique in the PowerStore solution, which includes inventory management as well as many other features. You may want to purchase it as a working example of how to integrate similar functionality into your website if some of my description sounds too complex.

lynette312402
05-13-2009, 09:09 AM
We already have the super suite but I only want to limit the quantities being entered by the customer to not exceed the quantity in stock. I am capable of doing coding as long as it is not too complex. The database already contains the quantity available and is managed manually.
Many thanks

CraigR
05-22-2009, 12:48 PM
Take a look at this thread, see if it helps,

http://www.webassist.com/forums/showthread.php?t=272.

to see it in action, go to

http://www.blunique.co.uk/Earrings-C1.html

and try and add 2 pairs of the same item into the basket.