![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/old/vendor/magento/module-shipping/view/adminhtml/templates/view/ |
<?php /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ ?> <div class="admin__table-wrapper"> <table class="data-table admin__table-primary order-shipment-table"> <thead> <tr class="headings"> <th class="col-product"><span><?= $block->escapeHtml(__('Product')) ?></span></th> <th class="col-qty last"><span><?= $block->escapeHtml(__('Qty Shipped')) ?></span></th> </tr> </thead> <?php $_items = $block->getShipment()->getAllItems() ?> <?php $_i = 0; foreach ($_items as $_item) : if (!empty($_item->getOrderItem())) : if ($_item->getOrderItem()->getParentItem()) : continue; endif; $_i++ ?> <tbody class="<?= /* @noEscape */ $_i%2 ? 'odd' : 'even' ?>"> <?= $block->getItemHtml($_item) ?> <?= $block->getItemExtraInfoHtml($_item->getOrderItem()) ?> </tbody> <?php endif; ?> <?php endforeach; ?> </table> </div>