0% found this document useful (0 votes)
11 views1 page

Inventory Management System

The document outlines an Inventory Management System built using React for the frontend, Flask for the backend, and MongoDB for the database. Key features include user authentication, inventory item management, stock monitoring, report generation, and search functionality. It also provides API endpoints for adding, retrieving, updating, and deleting inventory items, along with a database schema for the inventory collection.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
11 views1 page

Inventory Management System

The document outlines an Inventory Management System built using React for the frontend, Flask for the backend, and MongoDB for the database. Key features include user authentication, inventory item management, stock monitoring, report generation, and search functionality. It also provides API endpoints for adding, retrieving, updating, and deleting inventory items, along with a database schema for the inventory collection.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 1

Inventory Management System

Tech Stack:

●​ Frontend: React (Ant Design, Redux)


●​ Backend: Flask (CRUD operations for inventory)
●​ Database: MongoDB (Product inventory)
●​ Authentication: Appwrite

Features:

✅ User authentication​
✅ Add, edit, and delete inventory items​
✅ Set stock quantity and monitor low stock alerts​
✅ Generate inventory reports​
✅ Search and filter items
API Endpoints:
Method Route Description

POST /inventory/add Add a new item

GET /inventory Get all items

PUT /inventory/{id}/e Update item


dit details

DELETE /inventory/{id}/d Delete an item


elete

Database Schema (MongoDB)

Inventory Collection
json

{
"_id": "ObjectId",
"item_name": "string",
"category": "string",
"quantity": "number",
"price": "number",
"last_updated": "ISODate"
}

You might also like