Oracle Database implementation of an online store/warehouse system. The project provides separate interfaces for customers and managers to interact with the eMart database. At key points in the interactions, Matthew's eDepot database is queried for various information.
I worked on the eMart database, as well as the interfaces for customers and managers to interact with the store. These are supposed to be alternate ways to login into the website and interract with the product (as opposed to loggin in as a vendor and seeing the warehouse interface).
- How To Run
- Customer Interface Functionality
- Manager Interface Functionality
- eMart Database Functionality
- Technologies Used
git clone git@github.com:mglush/emart.git # clone repository.
cd emart # enter repository folder.
mvn clean && mvn tomcat7:run # run the store on localhost
You can then access the website login page at http://localhost:8080/emart or http://localhost:8080/emart/index.html
- log in with credentials.
- create an account if user not yet a customer.
- search through the product catalog by category by any criteria.
- add products to cart (for checkout later).
- check out (comeplete an order with products in the cart).
- display the previous order for the customer.
- re-run a previous order for a given customer.
- log in with credentials.
- print monthly summary of sales statements.
- adjust customer status (bypassing company policy) (not yet implemented).
- send an order to a manufacturer (bypassing company policy) (not yet implemented).
- change the price of an item (bypassing company policy).
- delete all sales transactions that are no longer needed for computation of customer status.
- automatically recomputes customer status according to their order history.
- automatically sends a replenishment request to a manufacturer when there are 3 low-inventory items in the store made by that manufacturer.
- allows for the change of company policy regarding how much discount to give to customers of certain status.
- keeps data of all orders and when each item was added to cart within that order, to properly apply company policy to correct timeframes.
- Database: Oracle.
- ojdbc11 21.5.0.0.
- ojdbc11 21.5.0.0.
- Backend: Java.
- openjdk 18.0.1.1.
- openjdk 18.0.1.1.
- Build automation tool: Maven Apache.
- maven-compiler 18.
- tomcat7-maven-plugin 2.2.
Michael Glushchenko © 2022