.
├── README.md
├── src/ -> Django workspace
├── client -> React app for web dashboard
└── requirements.txt
- Django 2.2+ (Python 3.6+)
- React 16.6+
Signup is defined in such a way that only the owner/manager can add new employees. This can be done in the Employees section of the web-app. It requires first and last name of the employee, their email, age, gender and password to facilitate their login.
Graphs showing the sales over time, sales per product, profit earned and money spent are visisble on homepage. This gives the owner a good overview of the sales and helps him decide further sales and marketing strategies.
In the Inventory tab, the user can check all products present in the shop, their respective quantity and their price in an elegant tabular format.The Product fields like Selling price, name and the limits can also be updated here.
In the Expiry tab, the user can also see the products which are going to expire within 3 days and thus, help the user take necessary action and avoid unnecessary losses.
In the Transactions tab, the user can create entries for buying products for the shop and selling products to the customer.
The id, Product transacted, Number of items, their price and the type of Transaction(Buy/Sell) are displayed in the Transaction History tab.
- Aryan Chouhan
- Apoorva Ambulgekar
- Govind Thakur
- Sheel Sanghvi
- Jenish Hirpara
- Preet Sanghavi
- Punit Lodha
- Ankit Gupta
- Nirav Jain
- Chinmay Khamkar
- Dhyey Thummar
- Jay Gala
- Aditya Jeswani
- Fenil Doshi
pip3 install -r requirements.txt
cd src
python3 manage.py makemigrations
python3 manage.py migrate
python3 manage.py runserver
cd client
npm install
npm start
- We have configured the precommit hook for frontend following the
eslint airbnb
guidelines along withprettier
code formatting. So make sure to follow the above guideline otherwise code will not be commited. - We are using flake8 for backend.
- The database we are using is sqlite3 for the prototype.
- Please follow the directory structure for React JS.
MIT License
Copyright (c) 2020 Unicode
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.