- MSAnsweredHello,
There is no such option to clear stock of warehouse. You can only delete the warehouse, it will partially clear the products stock too.
Thank you - RHAnsweredWill it remove all the sales reports?
- RHAnsweredAnd will it affect the other warehouse?
- MSAnsweredHello,
No. It will not delete any sale or any other data except quantity data for the warehouse.
Thank you - RHAnsweredHi, i have removed a warehouse, but the stock is still there. How can I remove that?Attachments
- MSAnsweredMay I know your version number? It is mention in the footer. Thanks
- RHAnswered(v3.4.37 )
- RHAnsweredI have updated it to the latest version, but the problem is still there.
- MSAnsweredHello,
You will need to manually delete the product data from `sma_warehouses_products` table.
```sql
-- replace X with the id of deleted warehouse
DELETE FROM `sma_warehouses_products` WHERE `warehouse_id` = X;
```
**_Update to latest version won't change any previous actions._** But will only affect the future ones.
Thank you - RHAnsweredThank You.
- Login to Reply