items.phtml 934 B

1234567891011121314151617181920212223242526272829303132
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. // @codingStandardsIgnoreFile
  7. ?>
  8. <?php $_shipment = $block->getShipment() ?>
  9. <?php $_order = $block->getOrder() ?>
  10. <?php if ($_shipment && $_order): ?>
  11. <table class="email-items">
  12. <thead>
  13. <tr>
  14. <th class="item-info">
  15. <?= /* @escapeNotVerified */ __('Items') ?>
  16. </th>
  17. <th class="item-qty">
  18. <?= /* @escapeNotVerified */ __('Qty') ?>
  19. </th>
  20. </tr>
  21. </thead>
  22. <?php foreach ($_shipment->getAllItems() as $_item): ?>
  23. <?php if (!$_item->getOrderItem()->getParentItem()) : ?>
  24. <tbody>
  25. <?= $block->getItemHtml($_item) ?>
  26. </tbody>
  27. <?php endif; ?>
  28. <?php endforeach; ?>
  29. </table>
  30. <?php endif; ?>