Zen Cart Logo
Forums / Addon Shipping Modules / ukzr.php (parcelforce module) Phantom Handling fees

ukzr.php (parcelforce module) Phantom Handling fees

Locked

Views: 949

Results 1 to 2 of 2
This thread is locked. New replies are disabled.
10 Nov 2010, 3:32 PM
#1
davx avatar

davx

New Zenner

Join Date:
Nov 2009
Posts:
80
Plugin Contributions:
0

ukzr.php (parcelforce module) Phantom Handling fees

Hi all.

Firstly thanks for taking the time to read this.

I am having an issue with the Parcelforce contribution (used to be called big royal mail)

I have installed this and its working fine however im getting phantom handling fees added to the shipping fee.

Zone 1 handling fee £1
Zone 2 handling fee £2
Zone 3 handling fee £3
Zone 4 handling fee £4

and so on.

There are no handling fees set in the admin, I have checked the db and under configuration -> configuration keys - > UKZR all handling fee's are set to 0.

Has anyone experienced this issue or have any ideas?

Kind Regards

Dave

12 Nov 2010, 10:19 AM
#2
davx avatar

davx

New Zenner

Join Date:
Nov 2009
Posts:
80
Plugin Contributions:
0

Re: ukzr.php (parcelforce module) Phantom Handling fees

Issue Solved - I have re-released an updated version of this contribution to the Add-ons section. This should be available within a week.

If anyone is having similar issues you need to change in ukzr.php

Line 167 from

'cost' => $shipping + (@constant('MODULE_SHIPPING_'.(strtoupper($this->code)).'_GEOZONE_') . $this->delivery_geozone . '_HANDLING'));

to

 'cost' => $shipping + (@constant('MODULE_SHIPPING_'.(strtoupper($this->code)).'_GEOZONE_' . $this->delivery_geozone . '_HANDLING')));

and line 199 from

 'cost' => $shipping + (@constant('MODULE_SHIPPING_'.(strtoupper($this->code)).'_GEOZONE_') . $this->delivery_geozone . '_HANDLING'));

to

 'cost' => $shipping + (@constant('MODULE_SHIPPING_'.(strtoupper($this->code)).'_GEOZONE_' . $this->delivery_geozone . '_HANDLING')));

Kind Regards

Dave