Project - 3 - Shoe Store Billing System
Project - 3 - Shoe Store Billing System
Project - 3 - Shoe Store Billing System
Name:
Board Roll Number:
Class:
Subject:
Topic:
Session: 2023 - 2024
Examination: AISSCE – 2024
1
TABLE OF CONTENTS [ T O C ]
01 ACKNOWLEDGEMENT 04
02 INTRODUCTION 05
04 PROPOSED SYSTEM 06
07 FLOW CHART 15
08 SOURCE CODE 16
09 OUTPUT 19
10 TESTING 20
12 BIBLIOGRAPHY 24
2
ACKNOWLEDGEMENT
Apart from the efforts of me, the success of any project depends
largely on the encouragement and guidelines of many others. I take this
opportunity to express my gratitude to the people who have been
instrumental in the successful completion of this project.
My sincere thanks to Mr. Arijit, Mr. Vikash Anand, PGT CS, a guide and
Mentor who critically reviewed my project and helped in solving each and
every problem, occurred during implementation of the project
The guidance and support received from all the members who
contributed and who are contributing to this project, was vital for the
success of the project. I am grateful for their constant support and help.
3
PROJECT ON SHOE BILLING SYSTEM (SMS)
INTRODUCTION
This project is based on the way in which the billing is done in the stores
here it is the shoe billing. This is helpful for the owners to maintain the list
of the sales done on the day or in a year and also helpful in calculating the
profit.
development.
PROPOSED SYSTEM
4
wise saying “to err is human” no longer valid, it’s outdated to rationalize
your mistake. So, to keep pace with time, to bring about the best result
5
efficiency so to replace the unending heaps of flies with a much
One has to use the data management software. Software has been
to maintain a lot of ledgers and a lot of paperwork has to be done but now
software production this organization has made their work faster and
easier. Now only this software has to be loaded on the computer and work
can be done.
This prevents a lot of time and money. The work becomes fully
6
SYSTEM DEVELOPMENT LIFE CYCLE (SDLC)
7
PHASES OF SYSTEM DEVELOPMENT LIFE CYCLE
INITIATION PHASE
8
also identify alternative solutions and detail as many informational,
functional, and network requirements as possible.
9
SYSTEM CONCEPT DEVELOPMENT PHASE
10
PICTORIAL REPRESENTATION OF SDLC:
PLANNING PHASE
11
acquisition planning, configuration management planning, quality
assurance planning, concept
12
of operations, system security, verification and validation, and systems
engineering management planning.
Further define and refine the functional and data requirements and
document them in the Requirements Document,
Complete business process reengineering of the functions to be
supported (i.e., verify what information drives the business process,
what information is generated, who generates it, where does the
information go, and who processes it),
Develop detailed data and process models (system inputs, outputs,
and the process.
Develop the test and evaluation requirements that will be used to
determine acceptable system performance.
DESIGN PHASE
13
constructed in various ways. Using a top-down approach, designers first
identify and link major program components and interfaces,
14
then expand design layouts as they identify and link smaller subsystems
and connections. Using a bottom-up approach, designers first identify and
link minor program components and interfaces, then expand design
layouts as they identify and link larger systems and connections.
Contemporary design techniques often use prototyping tools that build
mock-up designs of items such as application screens, database layouts,
and system architectures. End users, designers, developers, database
managers, and network administrators should review and refine the
prototyped designs in an iterative process until they agree on an
acceptable design. Audit, security, and quality assurance personnel should
be involved in the review and approval process. During this phase, the
system is designed to satisfy the functional requirements identified in the
previous phase. Since problems in the design phase could be very
expensive to solve in the later stage of the software development, a
variety of elements are considered in the design to mitigate risk. These
include:
16
DEVELOPMENT PHASE
IMPLEMENTATION PHASE
This phase is initiated after the system has been tested and
accepted by the user. In this phase, the system is installed to support the
intended business functions. System performance is compared to
performance objectives established during the planning phase.
Implementation includes user notification, user training, installation of
hardware, installation of software onto production computers, and
integration of the system into daily work processes. This phase continues
until the system is operating in production in accordance with the defined
user requirements.
19
FLOW CHART
START
importmysql.connector as sql
conn=sql.connect(host='localhost',user='root
',passwd='manager',database='shoe_billing')
conn.autocommit=True
c1=conn.cursor()
FALSE
user=input("enter user")
passwd=input("enter
password")
STOP
TRUE
if user=='arpit' and
passwd=='rahul':
ifv_choice==1 :
code=input("enter code=")
details=input ("adress=")
conn.commit()
v_code=input("
c1.execute("select * from
shoe_details where shoe_code
="+v_code)
16
print("Shoe code:",data[0][0])
print("brand name:",data[0][1])
print("customer name:",data[0][2]) print("customer number:",data[0][3]) print("custom
stop
17
SOURCE CODE
18
c1.execute("insert into shoe_details values
("+code+",'"+brand+"'"+",'"+name+"',"+number+",'"+details+"',"
+amount+")")
conn.commit()
elif v_choice==2:
v_code=input("enter the code number")
c1.execute("select * from shoe_details where
shoe_code ="+v_code)
data=c1.fetchall()
print("Shoe code:",data[0][0])
print("brand name:",data[0][1])
print("customer name:",data[0][2])
print("customer number:",data[0][3])
print("customer detail:",data[0][4])
print("amoumt:",data[0][5])
19
OUTPUT
MAIN PAGE ASKING THE CHOICE OF THE PROGRAMER
20
PAGE SHOWING THE DETAILS OF CUSTOMERS
charts
4
REEBOK
ADDIDAS LOTTO NIVIA
SAL
0
2000-20052005-20102010-20152015-20202020-20252025-2030
YEAR
21
TESTING
TESTING METHODS
Software testing methods are traditionally divided into black box
testing and white box testing. These two approaches are used to describe
the point of view that a test engineer takes when designing test cases.
22
SPECIFICATION-BASED TESTING
The black box tester has no "bonds" with the code, and a tester's
perception is very simple: a code must have bugs. Using the principle,
"Ask and you shall receive," black box testers find bugs where
programmers don't. But, on the other hand, black box testing has been
said to be "like a walk in a dark labyrinth without a flashlight," because
the tester doesn't know how the software being tested was actually
constructed.
That's why there are situations when (1) a black box tester writes
many test cases to check something that can be tested by only one test
case, and/or (2) some parts of the back end are not tested at all.
Therefore, black box testing has the advantage of "an unaffiliated
opinion," on the one hand, and the disadvantage of "blind exploring," on
the other.
24
HARDWARE AND SOFTWARE REQUIREMENTS
ATHALON(3800+- 4200+
DUALCORE)
SOFTWARE REQUIREMENTS:
I. Windows OS
II. Python
25
BIBLIOGRAPHY
***
26