You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When you are using tax included in price setting, the ShippingTotalManager will subtract tax difference between methods twice, causing wrong calculation in the checkout shipping step.
The problematic line is var newOrderTotal = orderTotal + this.totalShipmentAmount(newShipmentTotal, oldShipmentTotal) + (newTaxTotal - oldTaxTotal)
If the last part is removed, it works correctly when Store prices are set to include tax (as is usual in EU).
The text was updated successfully, but these errors were encountered:
When you are using tax included in price setting, the ShippingTotalManager will subtract tax difference between methods twice, causing wrong calculation in the checkout shipping step.
The problematic line is
var newOrderTotal = orderTotal + this.totalShipmentAmount(newShipmentTotal, oldShipmentTotal) + (newTaxTotal - oldTaxTotal)
If the last part is removed, it works correctly when Store prices are set to include tax (as is usual in EU).
The text was updated successfully, but these errors were encountered: