Hi All
I'm using the UC Custom Price module for specifying different price for different quantites of the same product
if($item->qty == 1) {
$item->price = $item->price;
}
if($item->qty == 2) {
$item->price = [cost]* 0.66;
}
if($item->qty >= 3) {
$item->price = [cost] *0.667;
}How can I give user friendly Interface with this module for specifying price depending on quantity.
I have a requirement such that the price of the product decreases with increase in the quantity ordered.
Eg:
Quantity-Price Each
1-- $475.00
2-- $357.50
3-- $350.00
100-- $350.00
Thanks

