Home C#.net Milk Inventory Management System Using C#.net with Print Receipt

Milk Inventory Management System Using C#.net with Print Receipt

8 min read
0
0
1,426

The Milk Inventory Management System is developed using Java and mysql. The project is built to manage sales and transactions. To make a new transaction, fields such as: Milk type, qty,price and payment 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, we will learn crystal reports step by step and design and  print receipts for the payments.

Learn how to make this System Step by step

Step1 : Create the database named with “milk “ on Sqlserver.establish the database connection

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

Add the Product details into the DataGridView

After selected milk type where 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

Remove items

if you want remove items from the datagridview. select the row of table which item need to be remove. then click delete button in the datagridview.

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

Call the Salessave() method inside the Print Invoice button. after calculating the total Print receipt will be released. This print receipt is design by crystal reports.

Paste this code inside the Print Invoice button

Print Receipt

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 C#.net

Leave a Reply

Your email address will not be published.

Check Also

Node js React Mongodb Search Functionality

In this articles will teach how to search records Node js React Express Mongodb.how the se…