In this tutorial, Today I will explain to how to get salable quantity in Magento 2.3.x version. After Magento 2.3.x version, you might notice that Magento display 2 different qty. one is quantity and second is salable quantity. The Quantity of product will not decrease when you just place order. It will decrease salable quantity when you place order. Quantity…
Tag: product-grid
How to Add Custom Mass Action to Product Grid in Magento 2
In this tutorial, Today I will explain to how to add custom mass action to product grid in Magento 2. In Magento 2 admin, Product grid created by ui_component. There are some mass actions already available in Magento 2 product grid. But, if you want to add custom mass action to product grid then, you need to extend product_listing.xml file.…
Magento 2 : How to Add Product Grid in UI Form using UIComponent
In this tutorial, Today I will explain to how to add product grid in custom module using UIComponent. Product Grid is useful to add/display product related information in your custom module. In UI Form, sometimes need to require to add product grid. For that, you can set product grid inside specific fieldset using UiComponent. It maybe tricky to add the…
Magento 2 : Remove decimals from quantity in product grid
In this tutorial, we will learn about how to remove decimals from quantity in product grid in Magento 2. In the product admin grid, there are by default quantity display with decimal points. Now, if the user wants to remove that decimals from quantity then, we need to customize to remove that. Magento doesn’t provide by default any configuration for…