We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8e79510 commit 8eff514Copy full SHA for 8eff514
app/code/Magento/Shipping/view/adminhtml/templates/view/items.phtml
@@ -13,9 +13,12 @@
13
</tr>
14
</thead>
15
<?php $_items = $block->getShipment()->getAllItems() ?>
16
- <?php $_i = 0; foreach ($_items as $_item):
+ <?php $_i = 0; foreach ($_items as $_item) :
17
if (!empty($_item->getOrderItem())) :
18
- if ($_item->getOrderItem()->getParentItem()): continue; endif; $_i++ ?>
+ if ($_item->getOrderItem()->getParentItem()) :
19
+ continue;
20
+ endif;
21
+ $_i++ ?>
22
<tbody class="<?= /* @noEscape */ $_i%2 ? 'odd' : 'even' ?>">
23
<?= $block->getItemHtml($_item) ?>
24
<?= $block->getItemExtraInfoHtml($_item->getOrderItem()) ?>
0 commit comments