Skip to content

An inventory management app used for cycle counting and recording your returns inventory

Notifications You must be signed in to change notification settings

gahmee/Inventory-Management

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

92 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Inventory-Management

An inventory management app used for cycle counting and recording your returns inventory

Capture

Dev Set Up

1. Create .env File

  • change .env.example in server folder and rename it to .env

2. Setup MongoDB

3. Run Server

$ cd server
$ npm install
$ npm start

4. Run Client

# open new terminal
$ cd client
$ npm install
$ npm start

Receive a Product

Track your products as they get delivered

  • On the navbar click Receive
  • Click on the plus sign to add a product
  • From the drop down menu select the product and enter the quantity
  • Add as many products by clicking on the plus sign
  • Clear a product entered by mistake by clicking the trash bin
  • Click submit to receive all entered products and their counts will be updated

Capture2

Add a New Product

Enter new products as they are created for future deliveries

  • On the navbar click Add
  • Enter the required fields
  • Click submit to complete

Capture3

New/Cycle Count

Cycle and update your counts

  • On the navbar click New Count
  • Enter new counts
  • Click Submit to complete
  • "Previous" values will now update to the "Counted" values and "Counted" values will now be the new entered counts.
  • Reset Received button will reset all received counts to 0

Capture4

In-line Editing

Delete any product or update the values

  • Click on any product row
  • Update any value
  • Right click to bring up context menu to submit, cancel or delete
  • Product values will not update uless submit is clicked on the context menu

Capture5