In Magento, you can remove the advanced Multi-Source Inventory and inventory reservation system by disabling all MSI-related Inventory modules. Here is a simple step-by-step process:
Prepare:
Back up your database.
Disable:
bin/magento module:status --enabled | grep '^Magento_Inventory' | xargs bin/magento module:disable
Recompile Magento:
- bin/magento setup:upgrade
- bin/magento cache:clean
- bin/magento setup:di:compile
- bin/magento indexer:reindex
- bin/magento cache:flush
That's it. After the site recompiles, there will be no more multi-source inventory or inventory reservations. Magento will revert to its basic inventory system, which is sufficient for most implementations without extensive ERP integrations.