cancel
Showing results for 
Search instead for 
Did you mean: 

Liquid Stock

Liquid Stock

I have a store that sells liquid products (beer). The problem I am facing is that the salable stock is in liquid ounces. Example: 1. If a customer buys a growler, Magento should decrease the stock by 64oz, and not by 1 (the 64oz bottle). 2. If a customer buys half-growler, Magento should decrease the stock by 32oz, not by 1 (the 32oz bottle). 3. If a customer buys 4 half-growler bottles, Magento should decrease the stock by 128oz (4x32) and not by 4 (4 bottles). Notice that the amount in stock is shared among all beer products, growlers, half-growlers and bottles.

How can I implement that in Magento 2.3?

Thanks a bunch!

2 REPLIES 2

Re: Liquid Stock

Hi @m3gaman28gebea 

You need to create simple product with Magento2. You can refer below link to create simple product within admin:
https://www.mageplaza.com/kb/how-create-simple-product-magento-2.html

With Magento2, after place order, only quantity will decrease. 

If issue resolve, Please click on 'Kudos' & Accept as Solution!

Problem solved? Click Accept as Solution!

Re: Liquid Stock

Hi Bhanu,

Thanks for your answer. However, it doesn't help me.

Simple products will decrease the stock by 1 unit when sold (order complete). I need the stock to be decreased by weight/liquid amount contained inside the product.

Example: If I sell 1 bottle of beer, I need the stock to be decreased by 12oz (the amount of beer in the bottle) and not by 1 (number of bottles sold).