Hello,

If you have a percent discount on a product and no discount use limit. If you order 2 products the discount is apply one time only.

I've correct it on uc_discounts.module at line 1373

+ $this_product_qty=$this_product->qty;
+ $product_sum = $product_sum + ($this_product_price*$this_product_qty);
- $product_sum = $product_sum + $this_product_price;

Is it the good way?

Thanks a lot for this module