File tree Expand file tree Collapse file tree 9 files changed +23
-9
lines changed
Bundle/view/frontend/templates/sales/order/creditmemo/items
Checkout/view/frontend/templates
onepage/review/item/price Expand file tree Collapse file tree 9 files changed +23
-9
lines changed Original file line number Diff line number Diff line change 6565 </td>
6666 <td class="col discount" data-th="<?= $ block ->escapeHtml (__ ('Discount Amount ' )) ?> ">
6767 <?php if ($ block ->canShowPriceInfo ($ _item )) : ?>
68- <?= $ block ->escapeHtml ($ block ->getOrder ()->formatPrice (-$ _item ->getDiscountAmount ())) ?>
68+ <?= $ block ->escapeHtml ($ block ->getOrder ()->formatPrice (-$ _item ->getDiscountAmount ()), [ ' span ' ] ) ?>
6969 <?php else : ?>
7070
7171 <?php endif ; ?>
Original file line number Diff line number Diff line change 1313 <span class="price-label"><?= $ block ->escapeHtml (__ ('Price ' )) ?> </span>
1414 <span class="price-wrapper">
1515 <?= $ block ->escapeHtml (
16- $ this ->helper (Magento \Checkout \Helper \Data::class)->formatPrice ($ _item ->getCalculationPrice ())
16+ $ this ->helper (Magento \Checkout \Helper \Data::class)->formatPrice ($ _item ->getCalculationPrice ()),
17+ ['span ' ]
1718 ) ?>
1819 </span>
1920</div>
Original file line number Diff line number Diff line change @@ -13,7 +13,8 @@ $_item = $block->getItem();
1313<span class="price-excluding-tax" data-label="<?= $ block ->escapeHtml (__ ('Excl. Tax ' )) ?> ">
1414 <span class="cart-price">
1515 <?= $ block ->escapeHtml (
16- $ this ->helper (Magento \Checkout \Helper \Data::class)->formatPrice ($ _item ->getRowTotal ())
16+ $ this ->helper (Magento \Checkout \Helper \Data::class)->formatPrice ($ _item ->getRowTotal ()),
17+ ['span ' ]
1718 ) ?>
1819 </span>
1920</span>
Original file line number Diff line number Diff line change @@ -13,7 +13,8 @@ $_item = $block->getItem();
1313<span class="price-including-tax" data-label="<?= $ block ->escapeHtml (__ ('Excl. Tax ' )) ?> ">
1414 <span class="cart-price">
1515 <?= $ block ->escapeHtml (
16- $ this ->helper (Magento \Checkout \Helper \Data::class)->formatPrice ($ _item ->getCalculationPrice ())
16+ $ this ->helper (Magento \Checkout \Helper \Data::class)->formatPrice ($ _item ->getCalculationPrice ()),
17+ ['span ' ]
1718 ) ?>
1819 </span>
1920</span>
Original file line number Diff line number Diff line change 1111$ _item = $ block ->getItem ();
1212?>
1313<span class="cart-price">
14- <?= $ block ->escapeHtml ($ this ->helper (Magento \Checkout \Helper \Data::class)->formatPrice ($ _item ->getRowTotal ())) ?>
14+ <?= $ block ->escapeHtml (
15+ $ this ->helper (Magento \Checkout \Helper \Data::class)->formatPrice ($ _item ->getRowTotal ()),
16+ ['span ' ]
17+ ) ?>
1518</span>
Original file line number Diff line number Diff line change @@ -12,5 +12,8 @@ $_item = $block->getItem();
1212?>
1313<?php $ _incl = $ this ->helper (Magento \Checkout \Helper \Data::class)->getSubtotalInclTax ($ _item ); ?>
1414<span class="cart-price">
15- <?= $ block ->escapeHtml ($ this ->helper (Magento \Checkout \Helper \Data::class)->formatPrice ($ _incl )) ?>
15+ <?= $ block ->escapeHtml (
16+ $ this ->helper (Magento \Checkout \Helper \Data::class)->formatPrice ($ _incl ),
17+ ['span ' ]
18+ ) ?>
1619</span>
Original file line number Diff line number Diff line change @@ -12,6 +12,7 @@ $_item = $block->getItem();
1212?>
1313<span class="cart-price">
1414 <?= $ block ->escapeHtml (
15- $ this ->helper (Magento \Checkout \Helper \Data::class)->formatPrice ($ _item ->getCalculationPrice ())
15+ $ this ->helper (Magento \Checkout \Helper \Data::class)->formatPrice ($ _item ->getCalculationPrice ()),
16+ ['span ' ]
1617 ) ?>
1718</span>
Original file line number Diff line number Diff line change @@ -12,5 +12,8 @@ $_item = $block->getItem();
1212?>
1313<?php $ _incl = $ this ->helper (Magento \Checkout \Helper \Data::class)->getPriceInclTax ($ _item ); ?>
1414<span class="cart-price">
15- <?= $ block ->escapeHtml ($ this ->helper (Magento \Checkout \Helper \Data::class)->formatPrice ($ _incl )) ?>
15+ <?= $ block ->escapeHtml (
16+ $ this ->helper (Magento \Checkout \Helper \Data::class)->formatPrice ($ _incl ),
17+ ['span ' ]
18+ ) ?>
1619</span>
Original file line number Diff line number Diff line change 3232 <?php endif ; ?>
3333 <span>
3434 <?= $ block ->escapeHtml (
35- $ this ->helper (Magento \Checkout \Helper \Data::class)->formatPrice ($ block ->getTotal ()->getValue ())
35+ $ this ->helper (Magento \Checkout \Helper \Data::class)->formatPrice ($ block ->getTotal ()->getValue ()),
36+ ['span ' ]
3637 ) ?>
3738 </span>
3839 <?php if ($ block ->getRenderingArea () == $ block ->getTotal ()->getArea ()) :?>
You can’t perform that action at this time.
0 commit comments