| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- // @codingStandardsIgnoreFile
- ?>
- <?php
- /** @var \Magento\Weee\Block\Adminhtml\Items\Price\Renderer $block */
- /** @var $_weeeHelper \Magento\Weee\Helper\Data */
- $_weeeHelper = $this->helper('Magento\Weee\Helper\Data');
- $_item = $block->getItem();
- ?>
- <?php if ($block->displayBothPrices() || $block->displayPriceExclTax()): ?>
- <div class="price-excl-tax">
- <?php if ($block->displayBothPrices()): ?>
- <span class="label"><?= /* @escapeNotVerified */ __('Excl. Tax') ?>:</span>
- <?php endif; ?>
- <?= $block->getUnitPriceExclTaxHtml() ?>
- <?php if ($this->helper('Magento\Weee\Helper\Data')->getApplied($_item)): ?>
- <br />
- <?php if ($block->displayPriceWithWeeeDetails()): ?>
- <small>
- <?php foreach ($this->helper('Magento\Weee\Helper\Data')->getApplied($_item) as $tax): ?>
- <span class="nobr"><?= /* @escapeNotVerified */ $tax['title'] ?>: <?= /* @escapeNotVerified */ $block->displayPrices($tax['base_amount'], $tax['amount']) ?></span>
- <?php endforeach; ?>
- </small>
- <?php endif; ?>
- <?php if ($block->displayFinalPrice()): ?>
- <br />
- <span class="nobr"><?= /* @escapeNotVerified */ __('Total') ?>:<br />
- <?= $block->getFinalUnitPriceExclTaxHtml() ?>
- </span>
- <?php endif; ?>
- <?php endif; ?>
- </div>
- <?php endif; ?>
- <?php if ($block->displayBothPrices() || $block->displayPriceInclTax()): ?>
- <div class="price-incl-tax">
- <?php if ($block->displayBothPrices()): ?>
- <span class="label"><?= /* @escapeNotVerified */ __('Incl. Tax') ?>:</span>
- <?php endif; ?>
- <?= $block->getUnitPriceInclTaxHtml() ?>
- <?php if ($this->helper('Magento\Weee\Helper\Data')->getApplied($_item)): ?>
- <br />
- <?php if ($block->displayPriceWithWeeeDetails()): ?>
- <small>
- <?php foreach ($this->helper('Magento\Weee\Helper\Data')->getApplied($_item) as $tax): ?>
- <span class="nobr"><?= /* @escapeNotVerified */ $tax['title'] ?>: <?= /* @escapeNotVerified */ $block->displayPrices($tax['base_amount_incl_tax'], $tax['amount_incl_tax']) ?></span>
- <?php endforeach; ?>
- </small>
- <?php endif; ?>
- <?php if ($block->displayFinalPrice()): ?>
- <br />
- <span class="nobr"><?= /* @escapeNotVerified */ __('Total') ?>:<br />
- <?= $block->getFinalUnitPriceInclTaxHtml() ?>
- </span>
- <?php endif; ?>
- <?php endif; ?>
- </div>
- <?php endif; ?>
|