Last active
August 29, 2015 14:16
-
-
Save rodde177/42d5dd87fcc7564ab3e5 to your computer and use it in GitHub Desktop.
Get minimum quantity increment for grouped products in Magento
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php foreach ($_associatedProducts as $_item): ?> | |
<tr> | |
<td> | |
<?php $stockItem = $_item->getStockItem(); ?> | |
<?php echo $stockItem->getMinSaleQty(); ?> | |
</td> | |
</tr> | |
<?php endforeach; ?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment