Skip to content

Commit ce1f927

Browse files
committed
Update ProductSalableQuantity.php
1 parent 0c6c401 commit ce1f927

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

ProductSalableQuantity.php

+8-4
Original file line numberDiff line numberDiff line change
@@ -19,14 +19,18 @@
1919

2020
function setProductQty($objectManager)
2121
{
22-
$productId = ["193206"];
23-
foreach ($productId as $itemId) {
22+
$productCollection = $objectManager->get('\Magento\Catalog\Model\ResourceModel\Product\CollectionFactory')->create();
23+
$productCollection->addAttributeToSelect(['name, sku']);
24+
$qty = 100;
25+
foreach ($productCollection as $product) {
2426
try {
27+
$productId = $product->getId();
2528
$stockModel = $objectManager->get('Magento\CatalogInventory\Model\Stock\ItemFactory')->create();
2629
$stockResource = $objectManager->get('Magento\CatalogInventory\Model\ResourceModel\Stock\Item');
27-
$stockResource->load($stockModel, $itemId,"product_id");
28-
$stockModel->setQty("90");
30+
$stockResource->load($stockModel, $productId,"product_id");
31+
$stockModel->setQty($qty);
2932
$stockResource->save($stockModel);
33+
echo __("Successfully updated Qty for product SKU %1", $product->getSku()) . PHP_EOL;
3034
} catch (Exception $e) {
3135
echo $e->getMessage();
3236
}

0 commit comments

Comments
 (0)