I may have found a bug in S/R 2.0 b104 (that's what I downloaded, but in the file, it says b103)... Also, something to watch out for if you have the "Better Together" contrib installed.
If you run a report using date ranges (ie; 1/1/07 to 10/23/07), AND you select a Manufacturer filter, the values for Num Orders, Num Products, Shipping $, Discounts $, Discounts Qty are all totaled up for the entire year, for all orders, NOT just for the manufacturer.
Anyone know where/how to fix this?
Regarding the B/T issue, the discounts don't include this Order Total module, so to fix it, you need to change this line:
PHP Code:
elseif ($class == "ot_coupon" || $class == "ot_group_pricing") {
to this:
PHP Code:
elseif ($class == "ot_coupon" || $class == "ot_group_pricing" || $class == "ot_better_together") {
If you have OTHER discounts, you need to add them the same way.
Thanks.
Bookmarks