12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- // @codingStandardsIgnoreFile
- ?>
- <?php if ($item = $block->getItem()): ?>
- <table class="qty-table">
- <tr>
- <th><?= $block->escapeHtml(__('Ordered')); ?></th>
- <td><?= /* @noEscape */ $item->getQtyOrdered()*1 ?></td>
- </tr>
- <?php if ((float) $item->getQtyInvoiced()): ?>
- <tr>
- <th><?= $block->escapeHtml(__('Invoiced')); ?></th>
- <td><?= /* @noEscape */ $item->getQtyInvoiced()*1 ?></td>
- </tr>
- <?php endif; ?>
- <?php if ((float) $item->getQtyShipped()): ?>
- <tr>
- <th><?= $block->escapeHtml(__('Shipped')); ?></th>
- <td><?= /* @noEscape */ $item->getQtyShipped()*1 ?></td>
- </tr>
- <?php endif; ?>
- <?php if ((float) $item->getQtyRefunded()): ?>
- <tr>
- <th><?= $block->escapeHtml(__('Refunded')); ?></th>
- <td><?= /* @noEscape */ $item->getQtyRefunded()*1 ?></td>
- </tr>
- <?php endif; ?>
- <?php if ((float) $item->getQtyCanceled()): ?>
- <tr>
- <th><?= $block->escapeHtml(__('Canceled')); ?></th>
- <td><?= /* @noEscape */ $item->getQtyCanceled()*1 ?></td>
- </tr>
- <?php endif; ?>
- </table>
- <?php endif; ?>
|