Logo 
Search:

Asp.net Forum

Ask Question   UnAnswered
Home » Forum » Asp.net       RSS Feeds

DB Design Question

  Asked By: Lewis    Date: Feb 10    Category: Asp.net    Views: 736
  

Answers / better mailing list suggestions?

I need to track inventory, and can't think of the best method to do it.

I'm thinking that my best bet would be a separate "stock movement" table
that stores a positive or negative number for items coming in or out of
inventory for every order placed, or every shipment received. I could
relate each stock movement record to it's corresponding invoice as one
is created for each instance (sending or receiving).

There is fairly high volume though, and that means a SUM'ed query each
time I need to check if an item is in stock before placing an order
(telephone and web).

I thought about compiling the numbers into a total at the end of every
week or so, but this could quickly get complicated, and I don't want to
introduce any errors.

I need to be able to track stock movement history, and some
accountability would be nice (for example find a typo from a guy in the
receiving department, and make a stock adjustment, all with comments).

Any ideas?

Share: 

 

1 Answer Found

 
Answer #1    Answered By: Sophie Campbell     Answered On: Feb 10

You could update a stock  Master with every transaction
so that you have up to minute stock balance .

Of course, you would need a stock receipt and issue
table ("stock movement" table).

To check  'typos' there are some spell-check components
from third-parties which you can try to integrate to
your input forms.

This may be more of an architecture related question.

 
Didn't find what you were looking for? Find more on DB Design Question Or get search suggestion and latest updates.




Tagged: