cancel
Showing results for 
Search instead for 
Did you mean: 

Salable Quantity

Salable Quantity

Is it possible to disable Salable Quantity at all? 

We use Microsoft Dynamics NAV which updates the 'Quantity' column in Magento 2 with a logic:

Inventory level in NAV minus quantity on sales order.

So we have no need for Salable Quantity.

Anyone advise?

Thanks

1 REPLY 1

Re: Salable Quantity

Hi @helloredwh852a ,

 

Can you check the below message on the Magento stack exchange?

There is also a free module by Ampersand, which does exactly that. It is available on GitHub

This module disables the inventory reservation logic introduced as part of MSI in Magento 2.3.3 - seehttps://github.com/magento/inventory/issues/2269for more information about the way MSI was implemented, and the issues that can happen with external WMS integrations.

This module will:

  • Prevent all writes to theinventory_reservationstable. It does so by using an around plugin onPlaceReservationsForSalesEventInterface
  • Trigger stock deductions on order placement. Seeinventory_sales_source_deduction_processorobserver onsales_order_save_afterevent.
  • Prevent stock deductions on order shipment. See disabledinventory_sales_source_deduction_processorobserver onsales_order_shipment_save_after event.
  • Replenish stock for canceled order items. Seeinventoryobserver onsales_order_item_cancelevent.

https://magento.stackexchange.com/questions/267373/magento-2-3-salable-quantity-turning-off

 

Hope this helps you!

Problem Solved! Click Kudos & Accept as Solution!