Skip to content

Commit 4345906

Browse files
MAGETWO-55301: Enable tax rate calculation on address change without shipping methods
1 parent 071ba9c commit 4345906

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

app/code/Magento/Checkout/view/frontend/web/js/model/cart/estimate-service.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,9 @@ define([
2121

2222
if (
2323
quote.isVirtual() ||
24-
window.checkoutConfig.activeCarriers && window.checkoutConfig.activeCarriers.length() === 0
24+
window.checkoutConfig.activeCarriers &&
25+
window.checkoutConfig.activeCarriers.length() === 0 &&
26+
quote.shippingAddress().isEditable()
2527
) {
2628
// update totals block when estimated address was set
2729
totalsProcessors['default'] = totalsDefaultProvider;

0 commit comments

Comments
 (0)