I am working on a system that will take orders and find the warehouse that has the stock to fulfill the order.
We have 19 warehouses that hold various different items, Based on inventory some items are at all warehouse some are only at one, some are at none.
I have created a portal that allows me to search for a SKU and see all warehouses that have the item in stock.
I would like to be able to import the orders as csv - create a record for each order - then show the warehouse that has all items available.
Current structure:
INVENTORY: Table with SKU, Warehouse Name, Warehouse Number, Quantity On Hand
WAREHOUSE: Table with Warehouse Name, Warehouse Number
ORDER: Table with All items on order, Order No.
MASTERSKU: Table with Master SKU list, ItemID
The Master SKU list layout has a portal that shows all warehouses with the SKU being assigned and the QoH.
Part of the issue is the order comes in with an ItemID - 4 to 6 digit code, not the SKU. Each order has 14 fields for itemID
Relationships
ORDER ItemIDs -> MASTERSKU ItemID
MASTERSKU SKU -> INVENTORY SKU
INVENTORY WarehouseID -> WARHOUSE WarehouseID
THoughts??
Thanks