Additional Handling Charge

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.
11 лет назад
Using Nop 2.6
We currently link to UPS for real-time shipping method computation.

In the configure screen for UPS under the access key and login info there is a line item allowing the store to add an
"Additional handling charge."  Is it possible to adjust this field such that it adds a % to the UPS shipping cost rather than a fixed $ amount??  We would like to add a 20% handling charge to the UPS calculated charge.

Thanks
11 лет назад
You should be able to modify the plugin.

Go to Project\Plugins\Nop.Plugin.Shipping.UPS\UPSComputationMethod.cs

Look at line 58. You may be able to change that line:

shippingOption.Rate += _upsSettings.AdditionalHandlingCharge;
11 лет назад
Or, if you're not a programmer, Shipping Director can do this easily.  Here's a similar example in this blog  (the 2nd example)

http://www.noptools.com/blog/26/shipping-rates-with-a-minimum-charge

In your scenario, change "Fedex" to "UPS", and your Surcharge Expression would be:   [$Rate] * 1.20
This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.