Page 1 of 1

Handling Fee Bug? - 2.0.2

Posted: Sun Apr 19, 2015 1:22 am
by gilaraujo
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

Re: Handling Fee Bug? - 2.0.2

Posted: Sun Apr 19, 2015 1:44 am
by gilaraujo

Re: Handling Fee Bug? - 2.0.2

Posted: Sun Apr 19, 2015 2:07 am
by atnaples
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...

Re: Handling Fee Bug? - 2.0.2

Posted: Sun Apr 19, 2015 2:11 am
by gilaraujo
Can you expand, what other problem in discounted problems?