Skip to content

Commit a943874

Browse files
committed
Merge branch 'ACP2E-350' into ACP2E-377
2 parents 521fc38 + 9dff657 commit a943874

File tree

1 file changed

+2
-1
lines changed
  • app/code/Magento/Weee/view/frontend/web/js/view/checkout/summary/item/price

1 file changed

+2
-1
lines changed

app/code/Magento/Weee/view/frontend/web/js/view/checkout/summary/item/price/row_excl_tax.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,8 @@ define([
2525
var rowTotalExclTax = parseFloat(item['row_total']);
2626

2727
if (!window.checkoutConfig.getIncludeWeeeFlag) {
28-
rowTotalExclTax += parseFloat(item['weee_tax_applied_amount']);
28+
rowTotalExclTax += parseFloat(item['qty']) *
29+
parseFloat(item['weee_tax_applied_amount']);
2930
}
3031

3132
return rowTotalExclTax;

0 commit comments

Comments
 (0)