Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/amliyanage/spring-pos-system
Togakade POS System is a web-based Point of Sale (POS) application developed to handle basic operations such as adding, searching, updating, and deleting records. The frontend is built using HTML, CSS, JavaScript, and jQuery, while the backend is powered by the Spring Framework.
https://github.com/amliyanage/spring-pos-system
api-rest java spring tomcat-server
Last synced: 13 days ago
JSON representation
Togakade POS System is a web-based Point of Sale (POS) application developed to handle basic operations such as adding, searching, updating, and deleting records. The frontend is built using HTML, CSS, JavaScript, and jQuery, while the backend is powered by the Spring Framework.
- Host: GitHub
- URL: https://github.com/amliyanage/spring-pos-system
- Owner: amliyanage
- License: mit
- Created: 2024-10-05T06:54:34.000Z (about 1 month ago)
- Default Branch: main
- Last Pushed: 2024-10-16T11:08:23.000Z (about 1 month ago)
- Last Synced: 2024-11-02T03:06:05.022Z (13 days ago)
- Topics: api-rest, java, spring, tomcat-server
- Language: Java
- Homepage:
- Size: 195 KB
- Stars: 5
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Togakade POS System
## Overview
Togakade POS System is a web-based Point of Sale (POS) application developed to handle basic operations such as adding, searching, updating, and deleting records. The frontend is built using HTML, CSS, JavaScript, and jQuery, while the backend is powered by the Spring Framework.## Features
### Customer Management:
- **Add new customers**
- **Search existing customers**
- **Update customer information**
- **Delete customers**### Item Management:
- **Add new items to inventory**
- **Search existing items**
- **Update item information**
- **Delete items from inventory**### Order Management:
- **Create new orders**
- **Retrieve and view existing orders**## Technologies Used
- **Frontend:** HTML, CSS, JavaScript, jQuery
- **Backend:** Java EE, Tomcat
- **API Documentation:** [Postman Documentation](https://documenter.getpostman.com/view/35384192/2sAXxV4ovZ)## Controllers and Endpoints
### Customer Controller
- **Add Customer:** `POST /customer` - Adds a new customer.
- **Search Customer:** `GET /customer/{id}` - Retrieves customer details by ID.
- **Update Customer:** `PUT /customer` - Updates the details of an existing customer.
- **Delete Customer:** `DELETE /customer/{id}` - Deletes a customer by ID.
- **Get Customers:** `GET /customer/getAll` - Retrieves a list of all customers.### Item Controller
- **Add Item:** `POST /item` - Adds a new item to the inventory.
- **Search Item:** `GET /item/{id}` - Retrieves item details by ID.
- **Update Item:** `PUT /item` - Updates the details of an existing item.
- **Delete Item:** `DELETE /item/{id}` - Deletes an item by ID.
- **Get Items:** `GET /item/getAll` - Retrieves a list of all items.### Order Controller
- **Add Order:** `POST /order` - Creates a new order.
- **Get Orders:** `GET /order` - Retrieves a list of all orders.## Getting Started
1. **Prerequisites:** Ensure you have a Java EE environment set up with Tomcat installed.
2. **Clone the Repository:** `git clone https://github.com/amliyanage/Spring-POS-System.git`
3. **Setup Database:** Configure your database settings in `application.properties`.
4. **Build and Run:** Deploy the WAR file to Tomcat and access the application.## API Documentation
Refer to the [Postman Documentation](https://documenter.getpostman.com/view/35384192/2sAXxV4ovZ) for detailed API endpoints and usage instructions.## License
This project is licensed under the [MIT License](LICENSE).