How To

How to Get Product Salable Quantity in Magento 2?

In today’s Magento 2 tutorial, I am going to illustrate how to obtain a salable quantity of product in Magento 2.

The functionality of Salable Quantity was introduced first with the release of Magento 2.3. Salable quantity allows managing the warehouse and avoiding out-of-stock conditions.

When an order is issued the quantity of the product does not reduce. Only the salable quantity is decreased. The quantity decreases after the order is shipped. Hence, the quantity and salable quantity are not always the same.

Solve the issue – quantity availability showing in stock even if the salable quantity is 0

Admin needs to keep an eye on salable quantity to manage inventory. Use the following code to get the salable quantity of product in Magento 2.

Steps to Get Product Salable Quantity in Magento 2:

Step 1: Create the following helper file in your extension

app\code\Vendor\Extension\Helper\Data.php

Then add the below code

<?php

namespace Vendor\Extension\Helper;

use Magento\Framework\App\Helper\AbstractHelper;
use Magento\Framework\App\Helper\Context;
use Magento\InventorySalesAdminUi\Model\GetSalableQuantityDataBySku;

class Data extends AbstractHelper
{
      private $getSalableQtyDataBySku;

      public function __construct(
             Context $context,
             GetSalableQuantityDataBySku $getSalableQtyDataBySku
      ){
             $this->getSalableQtyDataBySku = $getSalableQtyDataBySku;
             parent::__construct($context);
       }

       public function getSalableQtyBySku($sku)
       {
             $salable = $this->getSalableQuantityDataBySku->execute($sku);
            return json_encode($salable);
       }
}

You will get the following Output:

 [{"stock_name":"Default Stock","qty":100,"manage_stock":true}]

Conclusion:

And that’s it! You can easily fetch the salable quantity of product in Magento 2. If you are unable to get the desired output of a salable quantity, reach out to me via the comment section. Share the solution with your friends and stay updated for more tutorials.

Happy Coding!

Click to rate this post!
[Total: 4 Average: 4]
Dhiren Vasoya

Dhiren Vasoya is a Director and Co-founder at MageComp, Passionate 🎖️ Certified Magento Developer👨‍💻. He has more than 9 years of experience in Magento Development and completed 850+ projects to solve the most important E-commerce challenges. He is fond❤️ of coding and if he is not busy developing then you can find him at the cricket ground, hitting boundaries.🏏

Recent Posts

6 Innovative Tools Revolutionizing E-Commerce Operations

E-commerce has transformed the way consumers shop for products and services and interact with businesses.…

10 hours ago

How Upcoming Cookie Changes Will Affect Your E-commerce Website?

The e-commerce world is constantly in flux. New tech and strategies emerge daily to help…

11 hours ago

Magento 2: How to Add Header and Footer in Checkout

Hello Magento Friends, In today’s blog, we will discuss adding a header and footer to…

1 day ago

Understanding Flexbox Layout in React Native

Hello React Native Friends, Building a visually appealing and responsive mobile app is crucial in…

3 days ago

HYVÄ Themes Releases: 1.3.6 & 1.3.7 – What’s New

We're thrilled to announce the release of Hyvä Themes 1.3.6 and 1.3.7! These latest updates…

3 days ago

How Modern E-Commerce Platforms Leverage Docker & Kubernetes for Scalability

Your e-commerce platform is surging - orders are rolling in, traffic spikes are becoming the…

4 days ago