Post by gilaraujo » Sun Apr 19, 2015 1:22 am

So i was setting up some global handling fee and low order fees for my store.

Low order fee works as expected however i am noticing the handling fee Total is being ignored and all orders have it applied:

Handling FEE setup:
Image

Notice order must exceed 1000$ for handling fee.
Low order fee kicks in at order < 100$ so thats good.

Front End order example:

Image

However, the handling fee in this example shouldnt kick in, as the order total is < 1000$.

Am i correct in expect this behaviour?

Regards

New member

Posts

Joined
Fri Mar 27, 2015 10:32 pm

New member

Posts

Joined
Fri Mar 27, 2015 10:32 pm

Post by atnaples » Sun Apr 19, 2015 2:07 am

sorry, skip first half, but pay attention to the second

try to replace

Code: Select all

if (($this->cart->getSubTotal() < $this->config->get('handling_total')) && ($this->cart->getSubTotal() > 0)) {
with

Code: Select all

if (($this->cart->getSubTotal() > $this->config->get('handling_total')) && ($this->cart->getSubTotal() > 0)) {
in catalog/model/total/handling.php

but there is another problem with special/discounted products...

User avatar
New member

Posts

Joined
Thu Dec 11, 2014 7:20 am

Post by gilaraujo » Sun Apr 19, 2015 2:11 am

Can you expand, what other problem in discounted problems?

New member

Posts

Joined
Fri Mar 27, 2015 10:32 pm
Who is online

Users browsing this forum: No registered users and 5 guests