Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
47 changes: 44 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,46 @@
# Buffer_2.0
Buffer_2.0 repo to submit your projects to.Repository containing folder-wise code for all submissions to Buffer : A Project Series, conducted between April, 2021 - June, 2020.
**SUPERMARKET MANAGEMENT SYSTEM**

**OBJECTIVE:**

* We have tried to implement all the main functions that are required to run a supermarket.This includes billing, maintaining stock details, managing information about products, dealers and employees.
* Our project simulates the job of each and every member working in the supermarket. Every employee will get a different access to the application according to his/her role in the supermarket.
* It reduces the time and manpower required for management and maintenance of different tasks as the entire system is fully computerized.

**DATA STRUCTURE:**

We used a Singly Linked List to represent the list of products, dealers, customers and employees that are associated with the Supermarket because:
* They are dynamic in nature.
* Insertion order is maintained.
* This is ideal for our application where we have a large data and unknown number of objects so by using it
insertion and deletion operations can be easily implemented.

**WHAT WE HAVE LEARNT:**

* How to manage databases using MySQL.
* How to implement JDBC.
* How to implement linked lists using user defined functions.

**WHAT WE CAN ADD FURTHER:**

* We can define function for calculating Profit and Loss.
* We can give login credentials to the employees.
* We can make a UI by using JAVA Swing.

**TEAM MEMBERS:**

* Gouri Ghurka (SY IT)
* Himanshi Methwani (SY IT)
* Ruchita Herlekar (SY IT)
* Muskan Singhal (SY IT)

**MENTOR:**

* Bhavana Mache (B.Tech Comp)







Each folder should contain a separate README to describe the files and project objective

Binary file added SuperMarketPPT.pptx
Binary file not shown.
36 changes: 36 additions & 0 deletions src/billing_package/BillContents.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
package billing_package;

public class BillContents
{

private String prod_brand;
private int qty_purchased;
private double mrp;
private double tot_item_price;

public String getProd_brand() {
return prod_brand;
}
public void setProd_brand(String prod_brand) {
this.prod_brand = prod_brand;
}
public int getQty_purchased() {
return qty_purchased;
}
public void setQty_purchased(int qty_purchased) {
this.qty_purchased = qty_purchased;
}
public double getMrp() {
return mrp;
}
public void setMrp(double mrp) {
this.mrp = mrp;
}
public double getTot_item_price() {
return tot_item_price;
}
public void setTot_item_price(double tot_item_price) {
this.tot_item_price = tot_item_price;
}

}
Loading