Skip to content

Inventory management software is a software system for tracking inventory levels, orders, sales and deliveries. It can also be used in the manufacturing industry to create a work order, bill of materials and other production-related documents.

Notifications You must be signed in to change notification settings

harshiiash/Inventory-Management-System

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 

Repository files navigation

User Id: admin
Password : password
SQL commands required before program execution
create database IMS;
use IMS;
create table product(productid int NOT NULL AUTO_INCREMENT,productName varchar(30),purchasePrice int,salePrice decimal(8,2),productQty int,PRIMARY KEY (productId));
create table sale(saleID int NOT NULL AUTO_INCREMENT,productID int, price decimal(8,2),date date,saleQty int,PRIMARY KEY(saleId),FOREIGN KEY (productID) REFERENCES product(productID) ON DELETE CASCADE ON UPDATE CASCADE );

About

Inventory management software is a software system for tracking inventory levels, orders, sales and deliveries. It can also be used in the manufacturing industry to create a work order, bill of materials and other production-related documents.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages