0% found this document useful (0 votes)
16 views43 pages

Bakery Management

The document outlines a project on Bakery Management created by a 12th-grade student, detailing its objectives, source code, and functionalities for managing bakery products. It includes sections such as a certificate of authenticity, acknowledgments, and a comprehensive introduction to the project, emphasizing the automation of bakery operations. The source code provided demonstrates the implementation of a database system using Python and MySQL for managing bakery items and billing processes.

Uploaded by

Abhishek Sethi
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
16 views43 pages

Bakery Management

The document outlines a project on Bakery Management created by a 12th-grade student, detailing its objectives, source code, and functionalities for managing bakery products. It includes sections such as a certificate of authenticity, acknowledgments, and a comprehensive introduction to the project, emphasizing the automation of bakery operations. The source code provided demonstrates the implementation of a database system using Python and MySQL for managing bakery items and billing processes.

Uploaded by

Abhishek Sethi
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 43

Made by : Ayushi

Pandey
Class : 12th
Adm no. :
Session : 2024-25
School : sanskar
Public school
Bakery
manageme

t
Contents of the
project

� Certificate of Authenticity

� Acknowledgement

� Introduction

� Objectives of the Project

� Source Code

� Testing of the Source Code

� Conclusion

� Bibliography
Certificate of
authenticity

This is to certify that Prachi Kumari,


student of class 12th has successfully
completed the project in Computer
Science on the topic BAKERY
MANAGEMENT under the guidance of
Surya Narayan Sir during the year 2022
– 23. This project is absolutely genuine
and does not indulge in plagiarism of
any kind. The references taken in
making this project have been declared
at the end of this project.

Student’s Teacher’s
Signature Signature

Acknowledgement

It gave me an immense pleasure to


be associated with this project. This
project was a collection of data and
their interpretation. The project was a
joyous meaning process and helped
with practical knowledge. This is also to
acknowledge all those without whom
this project would not have been a
reality. First, I am grateful to my
Computer Science teacher who gave
immense support and guided me to
make this project. Without his
guidance, the project would not have
been complete. A special thanks of mine
goes to my friends who helped me in
completing the project.
In the end, I am thankful to my
parents for their valuable guidance and
co – operation in completing this
project.

Introduction

The ‘Bakery Management’ is a


project that deals with bakery
automation and it includes both
purchasing and selling of bakery
products. This project is designed with a
goal to make the existing system more
informative, reliable, fast and easier. The
program of this project can be used in
all the details of records such as price of
items, amount of items, name, etc. of
customers after grant of items from the
baker’s shop. This system will increase
the productivity and reduce the need of
manual system to a large extent.
Objectives of the
project

The objective of this project is to let the


students apply the programming knowledge
into a real world situation/problem and also, to
understand the students how programming
skills help in developing a good software. By this
project, students will be able to :
1. Write programs utilizing modern
software tools.
2. Apply object oriented programming
principles effectively when developing
small to medium sized objects.
3. Write effective procedural code to solve
small to medium sized problems.
4. Demonstrate a breadth of knowledge in
computer science, as exemplified in the
areas of systems, theory and software
development.
5. Demonstrate ability to conduct a research
or applied Computer Science project,
requiring writing and presentation skills
which exemplify scholarly style in
computer science

Source code
Connecting Python to MySQL &
Creating Database and Tables
#library import
import mysql.connector as sql

#setting connection
mydb = sql.connect(host = "localhost", user = "root", password = "")

#making cursor
cr = mydb.cursor()

#creating database
q = "create database super_markett"
cr.execute(q)
q = "use super_markett"
cr.execute(q)

#bakery
q = '''create table bakery(cid integer primary key,
cake varchar(30) not null,
flavour varchar(50),
dateofm date,
weight float,
content varchar(100),
price float)'''
cr.execute(q)

#BILLS
q = '''create table bills(store_name varchar(15) not null,
cname varchar(20),
date_of_pur date,
amount float)'''
cr.execute(q)
mydb.commit()

MAIN code
#library import

import mysql.connector as sql

import time

import random as rd

def bakery():

#Function for adding an item to the menu ...

def additem():

print("\n")

print("😇🙃"*10)

print("\n")
cid = input("What's the Code of the Dish You want to add : ")

cake = input("Which type of Dish you want to add (cake / pizza / pastry / etc (name) : ")

flavour = input("Enter Flavour of the Dish : ")

dateofm = input("Enter Date of Manufacture : ")

weight = input("Enter weight(in grams) : ")

content = input("Enter Ingredients : ")

price = input("Enter the Price : ")

print("\nSTORING FOOD DETAILS.......")

time.sleep(2)

q = "insert into bakery values(%s,%s,%s,%s,%s,%s,%s)"

data = (cid,cake,flavour,dateofm,weight,content,price)

cr = mydb.cursor()

cr.execute(q,data)

print("\nDishh Deatils Inserted.......!!!!")

time.sleep(1)

print("😎"*10)

print("\n")

mydb.commit()

#Function to refill ingredients or flavour

def refillitem():

cid = input("Enter the Code of the Dish whose ingredients/flavour you want to Change : ")

print("Press 1 - to change Flavour")

print("Press 2 - to change their Ingredients")

print("Press 3 - to goto the main menu")

a = int(input("What do You want to do : "))

if a == 1:

flavour1 = input("What's the new flavour to be replaced : ")

q = "update bakery set flavour = %s where cid = %s"

d = (flavour1,cid)

cr = mydb.cursor()

cr.execute(q,d)
print("\n")

print("😎😄"*8)

print("FLAVOUR CHANGED......!!")

print("😎😄"*8)

print("\n")

mydb.commit()

elif a == 2:

content1 = input("What's the new Ingredients to be replaced : ")

q = "update bakery set content = %s where code = %s"

d = (content1,cid)

cr = mydb.cursor()

cr.execute(q,d)

print("\n")

print("😎😄"*8)

print("INGREDIENTS UPDATED......!!")

print("😎😄"*8)

print("\n")

mydb.commit()

else:

print("\n")

#Function to show all dish detailss

def showitems():

print("😄"*10)

q = "select * from bakery"

cr = mydb.cursor()

cr.execute(q)

res = cr.fetchall()

print("\n","-"*95)

print("Code\tName\t\tflavour\t\tweight\t\tPrice")
print("-"*95)

for k in res:

print(k[0],"\t",k[1],"\t\t",k[2],"\t\t",k[-3],"\t\t",k[-1])

print("-"*95)

#Function to search a dish

def searchitem():

cid = input("Enter the DISH'S CODE : ")

q = "select * from bakery where cid = "+cid

cr = mydb.cursor()

cr.execute(q)

k = cr.fetchone()

if k == None:

print("\nNo Dish Found With This Code\n")

print("😣😣"*10)

else:

print("\nDish Found......!!")

print("😀😀"*10,"\n")

print("-"*95)

print("Code\tName\t\tflavour\t\tweight\t\tPrice")

print("-"*95)

print(k[0],"\t",k[1],"\t\t",k[2],"\t\t",k[-3],"\t\t",k[-1])

print("-"*95)

#FUNCTION TO DELETE A DISH'S DETAIL

def deleteitem():

cid = input("Enter the Code of the Dish to be Deleted : ")

q = "delete from bakery where cid = "+cid

cr = mydb.cursor()

cr.execute(q)

print("\nDish Deleted......!!\n")

print("😒😒"*10)
print("\n\n")

mydb.commit()

#Function for making billl......

def billitem():

cname = input("Enter Customer's Name : ")

date = input("Enter the Date of Purchase (in yyyy_mm-dd) : ")

amount = 0

cr = mydb.cursor()

while True:

code = input("Enter Dish code : ")

q = "select * from bakery where cid = "+code

cr.execute(q)

res = cr.fetchone()

if res == None:

print("\nNo Dish Found With This ID\n")

print("😣😣"*10)

else:

price = int(res[-1])

print("Price of Dish is : ",price)

qty = int(input("How Many Piece of the Item You Want to Have : "))

bill = price * qty

amount += bill

print("Amount for All Items are : ",amount)

ans = input("Do You Want to Have More Food in Your House : ")

if ans.lower() == "no":

print("Calculating Your Bill ....... ")

time.sleep(2)

break

print("Total Bill Amount to be paid by MR./MISS ",cname," is : ",amount)

q = "insert into bills values(%s,%s,%s,%s)"


data = ('bakery',cname,date,amount)

cr.execute(q,data)

mydb.commit()

#FUNCTION TO DISPLAY PREVIOUS BILLS

def displaybill():

print("😄"*10)

q = "select * from bills where Store_name = 'bakery'"

cr = mydb.cursor()

cr.execute(q)

res = cr.fetchall()

print("\n")

print("-"*95)

print("shop_name\tcustomer_name\t\tDate_of_Pur\t\tAmount")

print("-"*95)

for k in res:

print(k[0],"\t",k[1],"\t\t",k[-2],"\t\t",k[-1])

print("-"*95)

print("\n")

while True:

print("😇🙃"*10)

print"\tAHNOOR BAKERY CORNER")

print("😇🙃"*10)

print("\n")

print("Press 1 - Add New Item to the Menu")

print("Press 2 - Refill an item")

print("Press 3 - Show All Eatables")

print("Press 4 - Search an Cake/Pizza/Burger")

print("Press 5 - Delete an Eatable Details")

print("Press 6 - for Billing of Items")

print("Press 7 - Display Previous Bills")


print("press 8 - to Exit")

print("\n")

opt = int(input("Enter Your Choice : "))

if opt == 1:

additem()

elif opt == 2:

refillitem()

elif opt == 3:

showitems()

elif opt == 4:

searchitem()

elif opt == 5:

deleteitem()

elif opt == 6:

billitem()

elif opt == 7:

displaybill()

elif opt == 8:

print("THANKS FOR VISITING..!!")

print("✌😄"*10)

print("\t\t Have a Sweet Life Ahead")

print("*"*95)

break

else:

print("You're having only 8 options to choose -__-")

break

#setting connection

mydb = sql.connect(host = "localhost", user = "root", password = "")

#making cursor
cr = mydb.cursor()

#Selecting database

q = "use super_markett"

cr.execute(q)

#login screen

a = rd.randint(1,9)

b = rd.randint(1,9)

c = rd.randint(1,9)

d = rd.randint(1,9)

e = rd.randint(1,9)

num = str(a)+str(b)+str(c)+str(d)+str(e)

print("\t\t",num)

n = int(input("Enter The Number Shown Above : "))

if str(n) == num:

print("Yayyyiieee...You've Successfully Entered the Bakery..!!")

while mydb. is_connected():

print("🥳🎁"*8)

print("\n")

print("🥳🎁"*8)

print("Press 1 - to go to the Bakery ")

print("Press 2 - to Exit the Bakery \n")

ch = int(input("Enter Your Choice : "))

if ch == 1:

bakery()

elif ch == 2:

print("🙃"*10)

print("\t\tThanks for Visiting....!!!")

print("🙃"*10)
break

else: print

("You're Having Only 2 Choices -___-")

print("Try Again......!!!")

else:uman being -__-")

print("You Can't Enter The Market. SORRY >_____<")

Output
31383

Enter The Number Shown Above : 31383

Yayyyiieee...You've Successfully Entered the Bakery..!!


🥳🎁🥳🎁🥳🎁🥳

print("Seems like it's not a h🎁🥳🎁🥳🎁🥳🎁🥳🎁

Enter Your Choice : 1🎁🥳🎁🥳🎁🥳🎁🥳🎁🥳🎁🥳🎁🥳🎁

Press 1 - to go to the Bakery

Press 2 - to Exit the Bakery

😇🙃😇🙃😇🙃😇🙃😇🙃😇🙃😇🙃😇🙃😇🙃😇🙃
AHNOOR BAKERY CORNER
😇🙃😇🙃😇🙃😇🙃😇🙃😇🙃😇🙃😇🙃😇🙃😇🙃

Press 1 - Add New Item to the Menu

Press 2 - Refill an item

Press 3 - Show All Eatables

Press 4 - Search a Cake/Pizza/Burger

Press 5 - Delete an Eatable Details

Press 6 - for Billing of Items

Press 7 - Display Previous Bills

press 8 - to Exit

Enter Your Choice : 1

😇🙃😇🙃😇🙃😇🙃😇🙃😇🙃😇🙃😇🙃😇🙃😇🙃

What's the Code of the Dish You want to add : 100

Which type of Dish you want to add (cake / pizza / pastry / etc (name) : Cake

Enter Flavour of the Dish : Pineapple

Enter Date of Manufacture : 2023-01-01

Enter weight(in grams) : 500

Enter Ingredients : pineapple,bread,syrup

Enter the Price : 650

STORING FOOD DETAILS.......

Dishh Details Inserted.......!!!!


😎😎😎😎😎😎😎😎😎😎

😇🙃😇🙃😇🙃😇🙃😇🙃😇🙃😇🙃😇🙃😇🙃😇🙃

AHNOOR BAKERY CORNER


😇🙃😇🙃😇🙃😇🙃😇🙃😇🙃😇🙃😇🙃😇🙃😇🙃

Press 1 - Add New Item to the Menu

Press 2 - Refill an item

Press 3 - Show All Eatables

Press 4 - Search an Cake/Pizza/Burger

Press 5 - Delete an Eatable Details

Press 6 - for Billing of Items

Press 7 - Display Previous Bills

press 8 - to Exit

Enter Your Choice : 1

😇🙃😇🙃😇🙃😇🙃😇🙃😇🙃😇🙃😇🙃😇🙃😇🙃

What's the Code of the Dish You want to add : 101

Which type of Dish you want to add (cake / pizza / pastry / etc (name) : Pastry

Enter Flavour of the Dish : Rainbow

Enter Date of Manufacture : 2023-01-01

Enter weight(in grams) : 45

Enter Ingredients : flavoured syrups, bread, chocolate

Enter the Price : 30


STORING FOOD DETAILS.......

Dishh Deatils Inserted.......!!!!


😎😎😎😎😎😎😎😎😎😎

😇🙃😇🙃😇🙃😇🙃😇🙃😇🙃😇🙃😇🙃😇🙃😇🙃

AHNOOR BAKERY CORNER


😇🙃😇🙃😇🙃😇🙃😇🙃😇🙃😇🙃😇🙃😇🙃😇🙃

Press 1 - Add New Item to the Menu

Press 2 - Refill an item

Press 3 - Show All Eatables

Press 4 - Search an Cake/Pizza/Burger

Press 5 - Delete an Eatable Details

Press 6 - for Billing of Items

Press 7 - Display Previous Bills

press 8 - to Exit

Enter Your Choice : 1

😇🙃😇🙃😇🙃😇🙃😇🙃😇🙃😇🙃😇🙃😇🙃😇🙃

What's the Code of the Dish You want to add : 102

Which type of Dish you want to add (cake / pizza / pastry / etc (name) : Pizza

Enter Flavour of the Dish : Double Cheese


Enter Date of Manufacture : 2023-01-01

Enter weight(in grams) : 250

Enter Ingredients : cheese,base,veggies

Enter the Price : 490

STORING FOOD DETAILS.......

Dishh Deatils Inserted.......!!!!


😎😎😎😎😎😎😎😎😎😎

😇🙃😇🙃😇🙃😇🙃😇🙃😇🙃😇🙃😇🙃😇🙃😇🙃

AHNOOR BAKERY CORNER


😇🙃😇🙃😇🙃😇🙃😇🙃😇🙃😇🙃😇🙃😇🙃😇🙃

Press 1 - Add New Item to the Menu

Press 2 - Refill an item

Press 3 - Show All Eatables

Press 4 - Search an Cake/Pizza/Burger

Press 5 - Delete an Eatable Details

Press 6 - for Billing of Items

Press 7 - Display Previous Bills

press 8 - to Exit

Enter Your Choice : 1

😇🙃😇🙃😇🙃😇🙃😇🙃😇🙃😇🙃😇🙃😇🙃😇🙃
What's the Code of the Dish You want to add : 104

Which type of Dish you want to add (cake / pizza / pastry / etc (name) : cold drinks

Enter Flavour of the Dish : Coke

Enter Date of Manufacture : 2023-01-03

Enter weight(in grams) : 168

Enter Ingredients : Coca Cola

Enter the Price : 100

STORING FOOD DETAILS.......

Dishh Deatils Inserted.......!!!!


😎😎😎😎😎😎😎😎😎😎

😇🙃😇🙃😇🙃😇🙃😇🙃😇🙃😇🙃😇🙃😇🙃😇🙃

AHNOOR BAKERY CORNER


😇🙃😇🙃😇🙃😇🙃😇🙃😇🙃😇🙃😇🙃😇🙃😇🙃

Press 1 - Add New Item to the Menu

Press 2 - Refill an item

Press 3 - Show All Eatables

Press 4 - Search an Cake/Pizza/Burger

Press 5 - Delete an Eatable Details

Press 6 - for Billing of Items

Press 7 - Display Previous Bills

press 8 - to Exit

Enter Your Choice : 1


😇🙃😇🙃😇🙃😇🙃😇🙃😇🙃😇🙃😇🙃😇🙃😇🙃

What's the Code of the Dish You want to add : 103

Which type of Dish you want to add (cake / pizza / pastry / etc (name) : Burger

Enter Flavour of the Dish : Turkish Burger

Enter Date of Manufacture : 2023-01-04

Enter weight(in grams) : 130

Enter Ingredients : garlic,bread,red pepper

Enter the Price : 230

STORING FOOD DETAILS.......

Dishh Deatils Inserted.......!!!!


😎😎😎😎😎😎😎😎😎😎

😇🙃😇🙃😇🙃😇🙃😇🙃😇🙃😇🙃😇🙃😇🙃😇🙃

AHNOOR BAKERY CORNER


😇🙃😇🙃😇🙃😇🙃😇🙃😇🙃😇🙃😇🙃😇🙃😇🙃

Press 1 - Add New Item to the Menu

Press 2 - Refill an item

Press 3 - Show All Eatables

Press 4 - Search an Cake/Pizza/Burger

Press 5 - Delete an Eatable Details

Press 6 - for Billing of Items

Press 7 - Display Previous Bills


press 8 - to Exit

Enter Your Choice : 1

😇🙃😇🙃😇🙃😇🙃😇🙃😇🙃😇🙃😇🙃😇🙃😇🙃

What's the Code of the Dish You want to add : 105

Which type of Dish you want to add (cake / pizza / pastry / etc (name) : pastry

Enter Flavour of the Dish : chocolate

Enter Date of Manufacture : 2023-01-01

Enter weight(in grams) : 100

Enter Ingredients : chocolate, bread

Enter the Price : 90

STORING FOOD DETAILS.......

Dishh Deatils Inserted.......!!!!


😎😎😎😎😎😎😎😎😎😎

😇🙃😇🙃😇🙃😇🙃😇🙃😇🙃😇🙃😇🙃😇🙃😇🙃

AHNOOR BAKERY CORNER


😇🙃😇🙃😇🙃😇🙃😇🙃😇🙃😇🙃😇🙃😇🙃😇🙃

Press 1 - Add New Item to the Menu

Press 2 - Refill an item

Press 3 - Show All Eatables


Press 4 - Search an Cake/Pizza/Burger

Press 5 - Delete an Eatable Details

Press 6 - for Billing of Items

Press 7 - Display Previous Bills

press 8 - to Exit

Enter Your Choice : 1

😇🙃😇🙃😇🙃😇🙃😇🙃😇🙃😇🙃😇🙃😇🙃😇🙃

What's the Code of the Dish You want to add : 106

Which type of Dish you want to add (cake / pizza / pastry / etc (name) : Cake

Enter Flavour of the Dish : Strawberry

Enter Date of Manufacture : 2023-01-09

Enter weight(in grams) : 560

Enter Ingredients : strawberry,bread,sugar

Enter the Price : 450

STORING FOOD DETAILS.......

Dishh Deatils Inserted.......!!!!


😎😎😎😎😎😎😎😎😎😎

😇🙃😇🙃😇🙃😇🙃😇🙃😇🙃😇🙃😇🙃😇🙃😇🙃

AHNOOR BAKERY CORNER


😇🙃😇🙃😇🙃😇🙃😇🙃😇🙃😇🙃😇🙃😇🙃😇🙃
Press 1 - Add New Item to the Menu

Press 2 - Refill an item

Press 3 - Show All Eatables

Press 4 - Search an Cake/Pizza/Burger

Press 5 - Delete an Eatable Details

Press 6 - for Billing of Items

Press 7 - Display Previous Bills

press 8 - to Exit

Enter Your Choice : 1

😇🙃😇🙃😇🙃😇🙃😇🙃😇🙃😇🙃😇🙃😇🙃😇🙃

What's the Code of the Dish You want to add : 107

Which type of Dish you want to add (cake / pizza / pastry / etc (name) : Cake

Enter Flavour of the Dish : Vannilla

Enter Date of Manufacture : 2023-01-05

Enter weight(in grams) : 320

Enter Ingredients : vannilla essence, bread, chocolate

Enter the Price : 300

STORING FOOD DETAILS.......

Dishh Deatils Inserted.......!!!!


😎😎😎😎😎😎😎😎😎😎
😇🙃😇🙃😇🙃😇🙃😇🙃😇🙃😇🙃😇🙃😇🙃😇🙃

AHNOOR BAKERY CORNER


😇🙃😇🙃😇🙃😇🙃😇🙃😇🙃😇🙃😇🙃😇🙃😇🙃

Press 1 - Add New Item to the Menu

Press 2 - Refill an item

Press 3 - Show All Eatables

Press 4 - Search an Cake/Pizza/Burger

Press 5 - Delete an Eatable Details

Press 6 - for Billing of Items

Press 7 - Display Previous Bills

press 8 - to Exit

Enter Your Choice : 2

Enter the Code of the Dish whose ingredients/flavour you want to Change : 104

Press 1 - to change Flavour

Press 2 - to change their Ingredients

Press 3 - to goto the main menu

What do You want to do : 2

What's the new Ingredients to be replaced : sugar,caramel color

😎😄😎😄😎😄😎😄😎😄😎😄😎😄😎😄

INGREDIENTS UPDATED......!!
😎😄😎😄😎😄😎😄😎😄😎😄😎😄😎😄

😇🙃😇🙃😇🙃😇🙃😇🙃😇🙃😇🙃😇🙃😇🙃😇🙃

AHNOOR BAKERY CORNER


😇🙃😇🙃😇🙃😇🙃😇🙃😇🙃😇🙃😇🙃😇🙃😇🙃

Press 1 - Add New Item to the Menu

Press 2 - Refill an item

Press 3 - Show All Eatables

Press 4 - Search an Cake/Pizza/Burger

Press 5 - Delete an Eatable Details

Press 6 - for Billing of Items

Press 7 - Display Previous Bills

press 8 - to Exit

Enter Your Choice : 3


😄😄😄😄😄😄😄😄😄😄

--------------------------------------------------------------------------------------------------------------------------------------
---------------------

Code Name flavour weight Price

--------------------------------------------------------------------------------------------------------------------------------------
---------------------

100 Cake Pineapple 500.0 650.0

--------------------------------------------------------------------------------------------------------------------------------------
---------------------

101 Pastry Rainbow 45.0 30.0

--------------------------------------------------------------------------------------------------------------------------------------
---------------------

102 Pizza Double Cheese 250.0 490.0

--------------------------------------------------------------------------------------------------------------------------------------
---------------------

103 Burger Turkish Burger 130.0 230.0

--------------------------------------------------------------------------------------------------------------------------------------
---------------------
104 cold drinks Coke 168.0 100.0

--------------------------------------------------------------------------------------------------------------------------------------
---------------------

105 pastry chocolate 100.0 90.0

--------------------------------------------------------------------------------------------------------------------------------------
---------------------

106 Cake Strawberry 560.0 450.0

--------------------------------------------------------------------------------------------------------------------------------------
---------------------

107 Cake Vannilla 320.0 300.0

--------------------------------------------------------------------------------------------------------------------------------------
---------------------
😇🙃😇🙃😇🙃😇🙃😇🙃😇🙃😇🙃😇🙃😇🙃😇🙃

AHNOOR BAKERY CORNER


😇🙃😇🙃😇🙃😇🙃😇🙃😇🙃😇🙃😇🙃😇🙃😇🙃

Press 1 - Add New Item to the Menu

Press 2 - Refill an item

Press 3 - Show All Eatables

Press 4 - Search an Cake/Pizza/Burger

Press 5 - Delete an Eatable Details

Press 6 - for Billing of Items

Press 7 - Display Previous Bills

press 8 - to Exit

Enter Your Choice : 4

Enter the DISH'S CODE : 105

Dish Found......!!
😀😀😀😀😀😀😀😀😀😀😀😀😀😀😀😀😀😀😀😀
-----------------------------------------------------------------------------------------------

Code Name flavour weight Price

-----------------------------------------------------------------------------------------------

105 pastry chocolate 100.0 90.0

-----------------------------------------------------------------------------------------------
😇🙃😇🙃😇🙃😇🙃😇🙃😇🙃😇🙃😇🙃😇🙃😇🙃

AHNOOR BAKERY CORNER


😇🙃😇🙃😇🙃😇🙃😇🙃😇🙃😇🙃😇🙃😇🙃😇🙃

Press 1 - Add New Item to the Menu

Press 2 - Refill an item

Press 3 - Show All Eatables

Press 4 - Search an Cake/Pizza/Burger

Press 5 - Delete an Eatable Details

Press 6 - for Billing of Items

Press 7 - Display Previous Bills

press 8 - to Exit

Enter Your Choice : 4

Enter the DISH'S CODE : 110

No Dish Found With This Code

😣😣😣😣😣😣😣😣😣😣😣😣😣😣😣😣😣😣😣😣
😇🙃😇🙃😇🙃😇🙃😇🙃😇🙃😇🙃😇🙃😇🙃😇🙃

AHNOOR BAKERY CORNER


😇🙃😇🙃😇🙃😇🙃😇🙃😇🙃😇🙃😇🙃😇🙃😇🙃
Press 1 - Add New Item to the Menu

Press 2 - Refill an item

Press 3 - Show All Eatables

Press 4 - Search an Cake/Pizza/Burger

Press 5 - Delete an Eatable Details

Press 6 - for Billing of Items

Press 7 - Display Previous Bills

press 8 - to Exit

Enter Your Choice : 5

Enter the Code of the Dish to be Deleted : 107

Dish Deleted......!!

😒😒😒😒😒😒😒😒😒😒😒😒😒😒😒😒😒😒😒😒

😇🙃😇🙃😇🙃😇🙃😇🙃😇🙃😇🙃😇🙃😇🙃😇🙃

AHNOOR BAKERY CORNER


😇🙃😇🙃😇🙃😇🙃😇🙃😇🙃😇🙃😇🙃😇🙃😇🙃

Press 1 - Add New Item to the Menu

Press 2 - Refill an item

Press 3 - Show All Eatables

Press 4 - Search an Cake/Pizza/Burger

Press 5 - Delete an Eatable Details

Press 6 - for Billing of Items

Press 7 - Display Previous Bills


press 8 - to Exit

Enter Your Choice : 6

Enter Customer's Name : Ruhana

Enter the Date of Purchase (in yyyy_mm-dd) : 2023-01-03

Enter Dish code : 101

Price of Dish is : 30

How Many Piece of the Item You Want to Have : 4

Amount for All Items are : 120

Do You Want to Have More Food in Your House : yes

Enter Dish code : 103

Price of Dish is : 230

How Many Piece of the Item You Want to Have : 2

Amount for All Items are : 580

Do You Want to Have More Food in Your House : yes

Enter Dish code : 108

No Dish Found With This ID

😣😣😣😣😣😣😣😣😣😣😣😣😣😣😣😣😣😣😣😣

Enter Dish code : 104

Price of Dish is : 100

How Many Piece of the Item You Want to Have : 3

Amount for All Items are : 880

Do You Want to Have More Food in Your House : no

Calculating Your Bill .......

Total Bill Amount to be paid by MR./MISS Ruhana is : 880


😇🙃😇🙃😇🙃😇🙃😇🙃😇🙃😇🙃😇🙃😇🙃😇🙃

AHNOOR BAKERY CORNER


😇🙃😇🙃😇🙃😇🙃😇🙃😇🙃😇🙃😇🙃😇🙃😇🙃
Press 1 - Add New Item to the Menu

Press 2 - Refill an item

Press 3 - Show All Eatables

Press 4 - Search an Cake/Pizza/Burger

Press 5 - Delete an Eatable Details

Press 6 - for Billing of Items

Press 7 - Display Previous Bills

press 8 - to Exit

Enter Your Choice : 7


😄😄😄😄😄😄😄😄😄😄

--------------------------------------------------------------------------------------------------------------------------------------
---------------------

shop_name customer_name Date_of_Pur Amount

--------------------------------------------------------------------------------------------------------------------------------------
---------------------

bakery Ruhana 2023-01-03 880.0

--------------------------------------------------------------------------------------------------------------------------------------
---------------------

😇🙃😇🙃😇🙃😇🙃😇🙃😇🙃😇🙃😇🙃😇🙃😇🙃

AHNOOR BAKERY CORNER


😇🙃😇🙃😇🙃😇🙃😇🙃😇🙃😇🙃😇🙃😇🙃😇🙃

Press 1 - Add New Item to the Menu

Press 2 - Refill an item

Press 3 - Show All Eatables


Press 4 - Search an Cake/Pizza/Burger

Press 5 - Delete an Eatable Details

Press 6 - for Billing of Items

Press 7 - Display Previous Bills

press 8 - to Exit

Enter Your Choice : 8

THANKS FOR VISITING..!!


✌😄✌😄✌😄✌😄✌😄✌😄✌😄✌😄✌😄✌😄

Have a Sweet Life Ahead

**********************************************************************************
*************
🥳🎁🥳🎁🥳🎁🥳🎁🥳🎁🥳🎁🥳🎁🥳🎁

🥳🎁🥳🎁🥳🎁🥳🎁🥳🎁🥳🎁🥳🎁🥳🎁

Press 1 - to go to the Bakery

Press 2 - to Exit the Bakery

Enter Your Choice : 3

You're Having Only 2 Choices -___-

Try Again......!!!
🥳🎁🥳🎁🥳🎁🥳🎁🥳🎁🥳🎁🥳🎁🥳🎁

🥳🎁🥳🎁🥳🎁🥳🎁🥳🎁🥳🎁🥳🎁🥳🎁

Press 1 - to go to the Bakery

Press 2 - to Exit the Bakery

Enter Your Choice : 2


🙃🙃🙃🙃🙃🙃🙃🙃🙃🙃
Thanks for Visiting....!!!
🙃🙃🙃🙃🙃🙃🙃🙃🙃🙃
DATABASE & TABLES
CONTENT
Conclusion
This was an easy and amazing way to
create a Bakery Management System. I
have never imagined that a very simple
record maintenance of BAKERY could
be much fantastic and fascinating with
some different ways and few ideas. It is
customizable as per a developer’s
personal preference. Not just Bakery,
but many more programs and projects
can be developed easily in Python using
its various available tools and libraries.
There are lots of resources and books
out there to learn and increase the
knowledge of Python Programming,
and it is often overwhelming for
beginners.
This was a great experience of
working with this project. I hope that in
the future also, many marvellous and
wonderful things can be done easily
and interestingly with Python
programming.

Bibliography

� Books :

• Computer Science with Python :


Textbook for Class XII by Sumita
Arora
� Websites :

• www.wikipedia.org
• www.python.org

You might also like