adjustment.phtml 715 B

1234567891011121314151617181920
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. // @codingStandardsIgnoreFile
  7. ?>
  8. <?php /** @var \Magento\Tax\Pricing\Render\Adjustment $block */ ?>
  9. <?php if ($block->displayBothPrices()): ?>
  10. <span id="<?= /* @escapeNotVerified */ $block->buildIdWithPrefix('price-excluding-tax-') ?>"
  11. data-label="<?= $block->escapeHtml(__('Excl. Tax')) ?>"
  12. data-price-amount="<?= /* @escapeNotVerified */ $block->getRawAmount() ?>"
  13. data-price-type="basePrice"
  14. class="price-wrapper price-excluding-tax">
  15. <span class="price"><?= /* @escapeNotVerified */ $block->getDisplayAmountExclTax() ?></span></span>
  16. <?php endif; ?>