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 e53e613 commit 0e664a0Copy full SHA for 0e664a0
app/code/Magento/Sales/view/adminhtml/templates/items/column/qty.phtml
@@ -11,6 +11,13 @@
11
<td><?= (float) $item->getQtyOrdered() ?></td>
12
</tr>
13
14
+ <?php if ((float)$item->getQtyBackordered()) : ?>
15
+ <tr>
16
+ <th><?= $block->escapeHtml(__('Backordered')); ?></th>
17
+ <td><?= (float) $item->getQtyBackordered() ?></td>
18
+ </tr>
19
+ <?php endif; ?>
20
+
21
<?php if ((float)$item->getQtyInvoiced()) : ?>
22
<tr>
23
<th><?= $block->escapeHtml(__('Invoiced')); ?></th>
0 commit comments