Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/swetshaw/inventory-management-system
https://github.com/swetshaw/inventory-management-system
flask full-stack inventory-management inventory-management-system python3
Last synced: 13 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/swetshaw/inventory-management-system
- Owner: swetshaw
- Created: 2021-05-30T19:55:29.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2021-05-31T05:56:07.000Z (over 3 years ago)
- Last Synced: 2024-11-16T17:19:53.126Z (2 months ago)
- Topics: flask, full-stack, inventory-management, inventory-management-system, python3
- Language: HTML
- Homepage:
- Size: 17.6 KB
- Stars: 6
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# inventory-management-system
This project implements an inventory management system using Flask
## Installation
### Clone the repository
```
git clone https://github.com/swetshaw/inventory-management-system.git
```
### Enter into the folder
```
cd inventory-management-system
```
### Install required libraries
```
pip3 install -r requirements.txt
```
### Initialize the database
```
flask init-db
```
### Run the application
```
flask run
```
## Demo
#### Dashboard
Following page opens up when `flask run` is executed. This is called the **Dashboard** page. It displays the product quantity in each location.![image](https://user-images.githubusercontent.com/26214362/120144652-f370a880-c1ff-11eb-906e-3ed4eb3bbbd1.png)
#### Products
This page shows all the products listed for the inventory.
- Features
- Add product
- Edit product![image](https://user-images.githubusercontent.com/26214362/120145086-9de8cb80-c200-11eb-9a03-a0f720b1921e.png)
#### Location
This page is similar to the products page where all the location of the inventory is listed.
- Features
- Add Location
- Edit Location
![image](https://user-images.githubusercontent.com/26214362/120145428-20718b00-c201-11eb-9ae4-bb4f30b13405.png)#### Product Movement
On this page, the user can move the product from one location to another.
- Features
- Move Product
![image](https://user-images.githubusercontent.com/26214362/120146239-65e28800-c202-11eb-9c3d-7bab006eceb5.png)