What do your tables look like? In my head I see a Stores table that holds the information for the Stores. I see inventory or warehouse table. This could be an overall inventory for the chain of stores. You could also another table that shows how much inventory each store has. Then a couple of queries that join these together. This will get you your 1 point. for Subtracting you would capture the qty change and then write an update query.
Stores Table.
StoreID , StoreName, StoreAddress, StorePhoneNumber, InActiveDate, InActiveBy,
Inventory Table
Inventoryid , InventoryName, InventoryDescription, TotalQty , AdditionalQty , InventoryDate, InventoriedBy,InActiveDate, InActiveBy
StoreInventory
SI_ID, StoreID , InventoryID, StoreQty, AdditionalQty , InventoryDate, InventoriedBy,InActiveDate, InActiveBy
query or view
SELECT StoreInventory.StoreID, StoreInventory.InventoryID, StoreQty, StoreName, InventoryName, InventoryDescription
From StoreInventory inner join StoresTable on StoreInventory.Storeid = StoresTable.StoreID
Inner Join Inventorytable. on StoresTable.InventoryID = Inventorytable.inventoryid