123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- // @codingStandardsIgnoreFile
- /**
- * @var $block \Magento\Tax\Block\Checkout\Shipping
- * @see \Magento\Tax\Block\Checkout\Shipping
- */
- ?>
- <?php if ($block->displayShipping()):?>
- <?php if ($block->displayBoth()):?>
- <tr class="totals shipping excl">
- <th style="<?= /* @escapeNotVerified */ $block->getStyle() ?>" class="mark" colspan="<?= /* @escapeNotVerified */ $block->getColspan() ?>" scope="row">
- <?= /* @escapeNotVerified */ $block->getExcludeTaxLabel() ?>
- </th>
- <td style="<?= /* @escapeNotVerified */ $block->getStyle() ?>" class="amount" data-th="<?= $block->escapeHtml($block->getExcludeTaxLabel()) ?>">
- <?= /* @escapeNotVerified */ $this->helper('Magento\Checkout\Helper\Data')->formatPrice($block->getShippingExcludeTax()) ?>
- </td>
- </tr>
- <tr class="totals shipping incl">
- <th style="<?= /* @escapeNotVerified */ $block->getStyle() ?>" class="mark" colspan="<?= /* @escapeNotVerified */ $block->getColspan() ?>" scope="row">
- <?= /* @escapeNotVerified */ $block->getIncludeTaxLabel() ?>
- </th>
- <td style="<?= /* @escapeNotVerified */ $block->getStyle() ?>" class="amount" data-th="<?= $block->escapeHtml($block->getIncludeTaxLabel()) ?>">
- <?= /* @escapeNotVerified */ $this->helper('Magento\Checkout\Helper\Data')->formatPrice($block->getShippingIncludeTax()) ?>
- </td>
- </tr>
- <?php elseif ($block->displayIncludeTax()) : ?>
- <tr class="totals shipping incl">
- <th style="<?= /* @escapeNotVerified */ $block->getStyle() ?>" class="mark" colspan="<?= /* @escapeNotVerified */ $block->getColspan() ?>" scope="row">
- <?= /* @escapeNotVerified */ $block->getTotal()->getTitle() ?>
- </th>
- <td style="<?= /* @escapeNotVerified */ $block->getStyle() ?>" class="amount" data-th="<?= $block->escapeHtml($block->getTotal()->getTitle()) ?>">
- <?= /* @escapeNotVerified */ $this->helper('Magento\Checkout\Helper\Data')->formatPrice($block->getShippingIncludeTax()) ?>
- </td>
- </tr>
- <?php else:?>
- <tr class="totals shipping excl">
- <th style="<?= /* @escapeNotVerified */ $block->getStyle() ?>" class="mark" colspan="<?= /* @escapeNotVerified */ $block->getColspan() ?>" scope="row">
- <?= $block->escapeHtml($block->getTotal()->getTitle()) ?>
- </th>
- <td style="<?= /* @escapeNotVerified */ $block->getStyle() ?>" class="amount" data-th="<?= $block->escapeHtml($block->getTotal()->getTitle()) ?>">
- <?= /* @escapeNotVerified */ $this->helper('Magento\Checkout\Helper\Data')->formatPrice($block->getShippingExcludeTax()) ?>
- </td>
- </tr>
- <?php endif;?>
- <?php endif; ?>
|