Description: The Order Management System is a simple application that allows you to perform various operations related to orders, products, and customer information. You can create, edit, delete, and view orders, products, and customers. Additionally, the system provides an order history view for a day.
Table of Contents:
There are two versions of the Order Management System:
- Order Management System that totally runs on client side (no server required) and uses indexedDB to store data. See here for demo
- Order Management System that runs on client side and requires a server to store data in mongoDB. The application requires user to sign up and log in. See here for demo
Follow these steps to set up the Order Management System version 1 (no server required):
- Clone the repository.
- Check out
Development
branch. - Run
npm install
to install all dependencies. - Run
npm dev run
to start the application for development - Run
npm build
to build the application for production
Follow these steps to set up the Order Management System version 2 (server required):
- Clone the repository.
- Check out
Backend
branch. - Similar to the first version, run
npm install
to install all dependencies. - Backend - serverside is in different repository. Clone the repository here
- Clone the repository and follow the instruction to set up the backend server
- Set up environment variables in
.env
fileDEV=true VITE_CI=true VITE_PREVIEW_URL=https://localhost:3000 VITE_HEADLESS=false VITE_SKIP_TESTS=false #true VITE_API_URL=http://localhost:3000 VITE_INDEXEDDB_SAMPLE_DATA=false VITE_ORIGIN=http://localhost:5173/
- Create, edit, delete, and view orders, products, and customers.
- View order history for a specific day.
- Generate various statistics, such as total sales and top items sold.
-
Menu Page: To manage items or products, use the following options:
- Click on the
Add
button in the top-right corner to create a new item or product. - Click
edit
to modify an existing item or product. - Click
remove
to delete an item or product. - You can also hide an item by clicking on the
hide
button, which will remove it from the order page.
- Click on the
-
Main Order Page: Here, you can:
- View the current active orders.
- Edit, complete, or delete orders.
- View completed orders and the total sales of the day.
- Order Section: To create a new order, follow these steps:
- Click on the
Add
button in the top-right corner to create a new order. - Fill in the customer information form and click 'submit' to proceed to the order section.
- In the order section, you can add items to the cart, edit item quantities, remove items from the cart, and submit the order.
- Click on the
-
Order History Page: In this section, you can:
- View the order history of a specific day.
- Check the total sales for that day.
-
Customer Page: This page allows you to:
- View customer information.
- Edit or delete customer information.
-
Dashboard Page: Here, you can find various statistics:
- Total sales of the day
- Total number of orders
- Total number of customers
- Number of items sold
- Revenue chart
- Top items sold
Contributions to the Order Management System are welcome! If you want to contribute, follow the guidelines specified in the CONTRIBUTING.md file.
This project is licensed under the MIT License.
If you have any questions, suggestions, or feedback, feel free to reach out. You can contact me via email at dnthem@gmail.com or through GitHub.