Announcement

Collapse
No announcement yet.

Discounts and Shipping cost

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Discounts and Shipping cost

    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

    Nap
    Head of ICT
    Warehouse Systems Limited
    www.warehouse-systems.co.uk
    www.rackingplus.com

    #2
    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
    Ben Popplestone
    Ecommerce website software

    Comment


      #3
      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 line
      Code:
      my @Response = CallShippingPlugIn($pCartList, $nOrderAdjustedSubTotal);
      You will find two references (one for shipping and one for handling charges). Change both references to have
      Code:
      my @Response = CallShippingPlugIn($pCartList, $nAdjustedProductSubTotal);
      I hope this helps.
      Zoltan
      Actinic Software
      www.actinic.co.uk

      Comment


        #4
        thanks

        That works a treat thanks

        Nap
        Head of ICT
        Warehouse Systems Limited
        www.warehouse-systems.co.uk
        www.rackingplus.com

        Comment

        Working...
        X