Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Calculate shipping cost based on Grand Total of basket?

Tags:

magento

I’ve implemented a Table Rate Shipping system on my shop, based on a “Price vs Destination” condition. However, I’ve noticed that the shipping is calculated on the sub total of the basket (exc. VAT/Tax) instead of the Grand total (inc. VAT/Tax). How do I get Magento to base the shipping on the grand total, rather than the subtotal?

UPDATE: The version of Magento I'm using is Version 1.5.0.1.

like image 987
mickburkejnr Avatar asked Apr 08 '13 09:04

mickburkejnr


People also ask

How is inventory shipping cost calculated?

Divide the shipping cost by the average inventory figure. Continuing the same example, $30,000 / $1,200,000 = 0.025 x 100 = 2.5 percent. This figure represents the shipping costs as a percentage of inventory.

How much should I charge for shipping?

A popular way to figure out what to charge for shipping is to calculate your average shipping cost per package. The simple formula here is to add up the total cost of shipping your packages for a month, and then divide that figure by the amount of packages you shipped in the same time period.


2 Answers

Just on the back of the comments to huzefam's answer - you have mentioned VAT and are in the UK so I'm thinking maybe the GB language pack has been installed, in which case your path will be System -> Configuration -> Sales -> VAT submenu header -> Tax Classes and then you change the VAT Class for Delivery option.

See image below;

enter image description here

like image 144
McNab Avatar answered Sep 22 '22 06:09

McNab


Go to : System -> Configuration -> Sales -> VAT Check Calculation settings and try the following settings :

  • Tax Calculation Method Based On "total price"
  • Tax Calculation Based On "shipping addres"
  • Catalog Prices "including tax"
  • Shipping Prices "including tax"
  • Apply Customer Tax "before discount"
  • Apply Discount On Prices "excluding tax"
  • Apply Tax On "personalized price if available"

source : My Free Shipping is being calculated after tax is added

for more informations see :

  • http://www.magentocommerce.com/knowledge-base/entry/configuration-sales-tax-calculation-settings
  • http://www.magentocommerce.com/knowledge-base/entry/configuring-general-tax-settings
like image 32
Abdessamad Avatar answered Sep 21 '22 06:09

Abdessamad