Skip to content

Commit 1491801

Browse files
committed
ACP2E-3872: qty showing as 0 in the admin customer shopping cart section while adding BUNDLE products
1 parent c0ca5f3 commit 1491801

File tree

1 file changed

+1
-1
lines changed
  • app/code/Magento/Sales/view/adminhtml/templates/order/create/sidebar

1 file changed

+1
-1
lines changed

app/code/Magento/Sales/view/adminhtml/templates/order/create/sidebar/items.phtml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ $sideBarPermissionCheck = $block->getData('sideBarPermissionCheck');
7979

8080
<?php if ($block->canDisplayItemQty()): ?>
8181
<td class="col-qty">
82-
<?= (int) $block->getItemCount($_item) ?>
82+
<?= (int) $_item->getQty() ?>
8383
</td>
8484
<?php endif; ?>
8585

0 commit comments

Comments
 (0)