9 replies [Last post]
setfree's picture
Offline
Uber Donor
Joined: 12/16/2007
Juice: 436
Was this information Helpful?

I need to provide different pricing levels for different quantities of a product. For example ( Qty. 1-10 = $3 / Qty. 11-20 = $2.50 / Qty. 21-30 = $2)

I also need to discount to display for the item in the cart.

I noticed the 'discounts' module but saw many problems in it's thread, and another thread that said it was broken and abandoned.

Is the discount module the best choice for the latest release of Ubercart? If not, how should I handle pricing levels?

Thanks!

StephenGWills's picture
Offline
Uber DonorBug FinderEarly adopter... addicted to alphas.Getting busy with the Ubercode.Not Kulvik
Joined: 08/07/2007
Juice: 414
Re: Pricing levels (discounts)?

I am also trying to solve this need for our Qty buyers and wholesalers. I installed the discount module but it really does not offer the catalog support for my wholesale role. I am looking into how to modify the catalog, product, attribute and cart to support a wholesale matrix. Right now, extending the attribute schema to support a price matrix is the path i'm on. I definately open to ideas however.
Thanks for the issue bump.

alladin's picture
Offline
Joined: 11/02/2008
Juice: 2
working around

i tested the custom price module and ended up with:
product price on monthly base - 1 year subscription
2-5 -> 75%
6-10 -> 60%
>10 -> 50%

--code--
$item->price = $item->price*12;
switch($item->qty){
case 2:
case 3:
case 4:
case 5:
$item->price = $item->price*0.75;
break;
case 6:
case 7:
case 8:
case 9:
case 10:
$item->price = $item->price*0.6;
break;
}
if ($item->qty > 10){
$item->price = $item->price*0.5;
}
--/code--

seems to work. Now i just look a smart way to enter this rabating into the blocks without hacking around.

myke@drupal.org's picture
Offline
Joined: 04/12/2008
Juice: 189
setfree wrote:I need to
setfree wrote:

I need to provide different pricing levels for different quantities of a product. For example ( Qty. 1-10 = $3 / Qty. 11-20 = $2.50 / Qty. 21-30 = $2)

I also need to discount to display for the item in the cart.

I noticed the 'discounts' module but saw many problems in it's thread, and another thread that said it was broken and abandoned.

Is the discount module the best choice for the latest release of Ubercart? If not, how should I handle pricing levels?

Thanks!

Ubercart does need a coupon module, and a discount module.. Anyone with PHP skills willing to take over the Discounts module?

-Myke

Ryan's picture
Offline
Joined: 08/07/2007
Juice: 15438
Re: setfree wrote:I need to

Some folks have actually been giving the discounts module some love lately at http://drupal.org/project/uc_discounts.

zmove's picture
Offline
Bug FinderEarly adopter... addicted to alphas.Getting busy with the Ubercode.Internationalizationizer
Joined: 08/13/2007
Juice: 1192
Re: Re: setfree wrote:I need to

I'm one of the maintainer of the module and are working hard on it.

I'm specialized in the drupal 6 implementation of the module.

If you want to help, don't hesitate to test, report problems, and propose patch, it would help us to have a stable release quicker.

http://drupal.org/project/uc_discounts

myke@drupal.org's picture
Offline
Joined: 04/12/2008
Juice: 189
Discounts / Drupal 5

Is there a discounts that runs in Drupal 5 / Ubercart 1.5?

-Myke

zmove's picture
Offline
Bug FinderEarly adopter... addicted to alphas.Getting busy with the Ubercode.Internationalizationizer
Joined: 08/13/2007
Juice: 1192
Re: Discounts / Drupal 5

Just follow my link, you will see....

digitalfrontiersmedia's picture
Offline
Getting busy with the Ubercode.
Joined: 11/08/2008
Juice: 282
Hi setfree, I have a

Hi setfree,

I have a similar situation and was looking at the Custom Price Calculation module ( http://www.ubercart.org/contrib/2289 ). Although my client wants to be able to reset the pricing tiers at their discretion and I don't want to expose PHP to them since they are not coders.

What did you employ as your ultimate solution?

blindrocket's picture
Offline
Joined: 12/10/2008
Juice: 52
Re: Pricing levels (discounts)?

I am curious if the discounts module should be used in its current state or if there is another good option to offer discounts. I'm not sure about the PHP code route because I am not familiar with PHP.

Thank you.