A
Aries via AccessMonster.com
Hi, I have made a simple Inventory Control db and I would like to add a
stocktake table to better deal with missing items that is bound to happen in
the future.
tblProducts (ProductID "PK",ProductName, )
tblDeliveries (DeliveryID "Pk", DeliveryDate, Notes)
tblDeliveryDetails (DeliveryDetailID "PK", DeliveryID "FK", ProductID "FK",
Quantity)
tblReleases (ReleaseID "PK", ReleaseDate, Notes)
tblReleaseDetails (ReleaseDetailID "PK", ReleaseID "FK", ProductID "FK",
Quantity)
I already made a table for the stocktake containing these fields
tblStockTake (StockTakeID "PK", StockTakeDate, ProductID "FK", Quantity,
Notes)
My problem is I don't know how to integrate it with my current query for the
"ItemsInStock" which I had by simply subtracting the quantity released from
quantity delivered.can
Hope you can help me. thanks!
stocktake table to better deal with missing items that is bound to happen in
the future.
tblProducts (ProductID "PK",ProductName, )
tblDeliveries (DeliveryID "Pk", DeliveryDate, Notes)
tblDeliveryDetails (DeliveryDetailID "PK", DeliveryID "FK", ProductID "FK",
Quantity)
tblReleases (ReleaseID "PK", ReleaseDate, Notes)
tblReleaseDetails (ReleaseDetailID "PK", ReleaseID "FK", ProductID "FK",
Quantity)
I already made a table for the stocktake containing these fields
tblStockTake (StockTakeID "PK", StockTakeDate, ProductID "FK", Quantity,
Notes)
My problem is I don't know how to integrate it with my current query for the
"ItemsInStock" which I had by simply subtracting the quantity released from
quantity delivered.can
Hope you can help me. thanks!