Hi,
We would like to track inventory movement between multiple warehouse locations, there is no need to track stock value/sales, just need to track inventory movement between locations and the inventory balance
Warehouse: Warehouse A, Warehouse B
Item: Item A, Item B
Current Stock:
- - Warehouse A, Item A: 15
- - Warehouse A, Item B: 10
- - Warehouse B, Item A: 0
- - Warehouse B, Item B: 0
User Input: Transferring from Warehouse A to Warehouse B: 5 Item A and 10 item B
- Result:
- - Warehouse A, Item A: 15 - 5 = 10
- - Warehouse A, Item B: 10 - 10 = 0
- - Warehouse B, Item A: 0 + 5 = 5
- - Warehouse B, Item B: 0 + 10 = 10
-Thers is also
- - New Purchase -> item will be added to single warehouse only
- - Inventory Disposal -> item will be deducted from single warehouse only
End result needed
- - History data of inventory movement
- - History data of New Purchase and Disposal
- - Stock balance of each item in each warehouse
Is there a simple way to do this? thank you