PDA

View Full Version : Discounts and Shipping cost


Napolean
22-Jul-2003, 09:28 AM
Hi
Is it posible for actinic to work out shipping costs independently from the discounts, I have discounts set up at £1,000 10%, £2,500 20%, £5,000 25%, when actinic works this out now it takes in the discount, my shipping costs are as follows flat pack 6% total order value, shipped and assembled 14% total order value, ..this needs to be total order value before discounts

Is this posible to solve please
test site www.office-hypermarket.com (http://www.office-hypermarket.com)

Nap

Ben
23-Jul-2003, 12:50 PM
Hi Martin

I'm not sure on this one - it may be that a script change would do it. I'll look into it and feed back to you.

Ben

zmagyar
23-Jul-2003, 08:34 PM
Thanks for raising this. It looks like we have a bug in the order summary code here. I have asked for a bug report therefore most likely this issue will be fixed in the next maintenance release of Catalog.
If you need a solution meanwhile you can get this work correctly by doing some change on the scripts. Just open ActinicOrder.pm in a plain text editor and find the linemy @Response = CallShippingPlugIn($pCartList, $nOrderAdjustedSubTotal);You will find two references (one for shipping and one for handling charges). Change both references to havemy @Response = CallShippingPlugIn($pCartList, $nAdjustedProductSubTotal);
I hope this helps.

Napolean
28-Jul-2003, 08:23 AM
That works a treat thanks :)

Nap