Home Java Fried Rice shop Inventory Management System in Java Mysql

Fried Rice shop Inventory Management System in Java Mysql

10 min read
0
0
888

The Fried Rice shop Inventory Management System is developed by Java and MySQL.java best practice is must if you interested in java. The project is built to manage sales and transactions. To make a new transaction, fields such as: Fried Rice type, qty,price needs to be selected. If you like to learn point of sales systems step by step, this is the right place to learn from the beginning.

In this tutorial,you will learn  jasper reports step by step and designing the java print receipt.java coding practices is very important  for us to grow the knowledge in java day by day.how to be a good programmer in the future. Let go and learn the java mini projects step by step.i have attached the complete project video also how the flow works step by step below.

In order to create the system we have used NetBeans IDE and Mysql database as a backend.

Features of the Project

  • Point of Sales
  • Stock Management
  • Java Receipt

Learn how to make this System Step by step

The first step Create the database named with “friedriceshop“. then established the database connection to download the mysql connector in order to connect Java & mysql.if you don’t  have an idea about  download the mysql connector you can follow this link.

To connect the database please refer the following code. To create the method name connect (); paste the below code inside the Connect () method.

After that call the method Connect() inside the constructor. When the programme is started to run, all the forms are loaded along with the connection method. Pasted the Connect() method inside the constructor.

The system shall be able to select the relevant Rice type.

Add the Product details into the JTable

After selected the relevant rice type the user has the option to add the qty by clicking the add button to see all Products details which will be shown in the below table.

Paste this code inside the add button

Calculating the Total and balance

After that  create the method Sales().we have to create two different tables to store data into the database.we also have to create the following tables from database.
carclean tables consist of following colums – id,subtotal,pay,balance.
car_products tables consist of following – id,sales_id,ricetype,price,qty,total.

Call the Sales() method inside the Print Invoice button. after calculating the total print receipt will be released. This print receipt is design by Jsper Reporting.

Paste this code inside the Print Invoice button

Print Recipt

i have attached the video link below. which will do this tutorials step by step.

 

 

Load More Related Articles
Load More By admin
Load More In Java

Leave a Reply

Your email address will not be published. Required fields are marked *

Check Also

Create Maven project in Intellij

In this tutorial will see how to create Maven project in Intellij step by step. First Step…