Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/naveenrajm7/inventory-management
A website for Inventory mangement - using Django,MySQL
https://github.com/naveenrajm7/inventory-management
django inventory mysql python
Last synced: 14 days ago
JSON representation
A website for Inventory mangement - using Django,MySQL
- Host: GitHub
- URL: https://github.com/naveenrajm7/inventory-management
- Owner: naveenrajm7
- License: mit
- Created: 2018-03-18T20:35:05.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2022-04-22T20:52:07.000Z (over 2 years ago)
- Last Synced: 2023-03-01T11:21:13.053Z (over 1 year ago)
- Topics: django, inventory, mysql, python
- Language: Python
- Size: 40.7 MB
- Stars: 4
- Watchers: 1
- Forks: 4
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# inventory-management
[![HitCount](http://hits.dwyl.io/naveenrajm7/inventory-management.svg)](http://hits.dwyl.io/naveenrajm7/inventory-management)
A website for Inventory mangement - using Django,MySQL## Motivation
This is a WebApp was built as a part of Web programming course of class 2015-2019 Dept. of ISE, NIE. Mysore.
This project demonstrates the use of web technologies like HTML, CSS(Bootstrap), Javascript and uses MySQL as the database. The project was built using Django framework.
I have also containerized the entire app using Docker.## Features
Functionality wise this project does the basic CRUD operations.
* Add Warehouse details
* Add items from Warehouse
* Buy Items
* Sell Items
* Get fast moving items
* Get slow moving items
* Get FSN & ABC list of inventory## Installation
### Prerequisite
The project is containerized , so the only prerequisite is you should have docker and docker-dompose installed in your system.To get docker for Mac https://docs.docker.com/docker-for-mac/install/
To get docker for Ubuntu https://docs.docker.com/install/linux/docker-ce/ubuntu/
**NOTE** : This is a Linux container, and can only be run in MacOS or Linux distros.
### Step 1
Get the code from github
>git clone https://github.com/naveenrajm7/inventory-management.git
### Step 2
Go inside project repo
>cd inventory-management
### Step 3
Run docker-compose
>docker-compose upThis command builds container , creates networks and volumes required for webapp.
_ISSUE_ : While running the MySQL container for first time, the process stops before running the Django test server. So simply stop the process by Ctrl+C and run _docker-compose up_ again.### Step 4
Visit http://localhost:8000 in your browser to see the WebApp.### Step 5
Press Ctrl+C to stop Django test server.
>docker-compose downTo remove containers and network.
To make the data persistent docker volume inventory-management_inventory_volume has been created so deleting the container will not affect the data stored in mysql container.## How to use
Once installed , visit the http://localhost:8000 , first register & then login to start making transactions. There is also **Help** section which shows how to use the website.
## Website Screenshots and functions
### Welcome page
![Index](https://raw.githubusercontent.com/naveenrajm7/inventory-management/master/screenshots/index.png?raw=true "Optional Title")
Index page of website
### Login page
![Login](https://raw.githubusercontent.com/naveenrajm7/inventory-management/master/screenshots/login.png?raw=true "Optional Title")
used to login
### Register page
![Register](https://raw.githubusercontent.com/naveenrajm7/inventory-management/master/screenshots/register.png?raw=true "Optional Title")
to register new user
### Home
![Home](https://raw.githubusercontent.com/naveenrajm7/inventory-management/master/screenshots/home.png?raw=true "Optional Title")
home page after login which shows Master table contents### Help
![Alt text](https://raw.githubusercontent.com/naveenrajm7/inventory-management/master/screenshots/help.png?raw=true "Optional Title")
Contains Steps to use websiteTo carry out Transcations Do -
1. Adding Items to Master table -> Add
2. To Sell Items -> click on Sell
3. To Buy Items -> click on Buy
4. Adding Ware house to list -> click on Ware
5. To add details of item -> click on Item
6. To Update the Master table -> click on Update
* Update must be clicked only after designated period (like end of month,week)To view Transcations and status of inventory -
To view Switch to toggle bar and -1. Sold Items -> click on Sold List
2. Bought Items -> click on Bought List
3. Ware House list -> click on Ware House
4. Items Detail table -> click on Items
5. Fast Moving Items list -> click on FSN
6. ABC analysis list -> click on ABC
7. Dead stock of Inventory -> click on Dead Stock
8. Generate reorder list -> click on Reorder List## Contribute
If you encounter any issue using this project. Open issue in github.
You can also take up any open issue and work on it.## Credits
* My Project Team.
* [Django Docs](https://docs.djangoproject.com/en/2.2/)
* [Sentex Django Web Development with Python](https://www.youtube.com/watch?v=FNQxxpM1yOs&list=PLQVvvaa0QuDeA05ZouE4OzDYLHY-XH-Nd)
* [NewBoston Django Tutorials for beginners](https://www.youtube.com/watch?v=qgGIqRFvFFk&list=PL6gx4Cwl9DGBlmzzFcLgDhKTTfNLfX1IK)
* [Dockerize a Django Application](https://medium.com/backticks-tildes/how-to-dockerize-a-django-application-a42df0cb0a99)
* [Docker setup for Django on MySQL](https://medium.com/@minghz42/docker-setup-for-django-on-mysql-1f063c9d16a0)