Cs Project
Cs Project
Cs Project
SCHOOL
ROLL NO : 1,2,8,24
MEMBERS OF TEAM : ABHISHEK CHARAN
ADARSH DAS
BADAL GUPTA
MAYANK PANWAR
CLASS : XII
SUBJECT : COMPUTER SCIENCE
SUB CODE : 083
CERTIFICATE
Examiner:
Name: _______________
Signature:
ACKNOWLEDGEMENT
Apart from the efforts of all of us, the success of any project depends largely on the
encouragement and guidelines of many others. We take this opportunity to express
our gratitude to the people who have been instrumental in the successful completion
of this project.
We express deep sense of gratitude to almighty God for giving us strength for the
successful completion of the project.
We express our heartfelt gratitude to our parents for constant encouragement while
carrying out this project.
We express our deep sense of gratitude to the luminary The Principal, Saint Paul
School Pali, who has been continuously motivating and extending their helping hand
to us.
Our sincere thanks to Mr. SHIBU THOMAS, Master In-charge, A guide, Mentor all
the above a friend, 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. We are
grateful for their constant support and help.
PROJECT ON HOSPITAL AND INVENTORY MANAGEMENT SYSTEM
INTRODUCTION
1. The Hospital Management System (HMS) is designed for Any Hospital to replace
their existing manual, paper based system. This System targets to provide complete
solution for Hospital and Health care services. This System can be used in any
Hospital, Clinic, Diagnostics or Pathology labs for maintaining patient details and
their test results. It Integrates the entire Resources of a Hospital into One Integrated
Software Application.
The objective of this project is to let the students apply the programming
knowledge into a real- world situation/problem and exposed the students how
Today one cannot afford to rely on the fallible human beings of be really
wants to stand against today’s merciless competition where not to 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 without malfunctioning and greater
efficiency so to replace the unending heaps of flies with a much sophisticated hard
One has to use the data management software. Software has been an ascent
markets, which have helped in making the organizations work easier and efficiently.
Data management initially had to maintain a lot of ledgers and a lot of paper work
has to be done but now software product on 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 automated
and any information regarding the organization can be obtained by clicking the
INITIATION PHASE
This phase formally defines the detailed functional user requirements using
high-level requirements identified in the Initiation, System Concept, and Planning
phases. It also delineates the requirements in terms of data, system performance,
security, and maintainability requirements for the system. The requirements are
defined in this phase to alevel of detail sufficient for systems design to proceed. They
need to be measurable, testable, and relate to the business need or opportunity
identified in the Initiation Phase. The requirements that will be used to determine
acceptance of the system are captured in the Test and Evaluation MasterPlan.
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
The design phase involves converting the informational, functional, and
network requirements identified during the initiation and planning phases into unified
design specifications that developers use to script programs during the development
phase. Program designs are constructed in various ways. Using a top-down
approach, designers first identify and link major program components and interfaces,
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:
DEVELOPMENT PHASE
Testing as a deployed system with end users working together with contract
personnel
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.
OPERATIONS AND MAINTENANCE PHASE
if conn.is_connected():
print('successfully connected')
c1=conn.cursor()
print('---------------------------------------------')
print("HOSPITAL MANAGEMENT SYSTEM")
print('---------------------------------------------')
print('"GOD WISHES YOU"')
print("1.Hospital")
print("2.Pharmacy")
print("3.EXIT")
if choice==1:
u1=input("enter user name:")
pwd1=input("enter the password:")
while u1=='badal'and pwd1=='214112':
print('connected')
print("WELCOME TO HOSPITAL")
print("successfully connected")
print('1. Registering Patient details')
print('2. Registering Doctor details')
print('3. Registering Worker details')
print("4. total patient details")
print("5. total doctor details")
print("6. total worker details")
print('7. Patient detail')
print('8. Doctor detail')
print('9. Worker detail')
print('10.Deleting details')
print('11.Exit')
if choice==1:
p_name=input('Enter Patient Name:')
p_age=int(input('Enter Age:'))
p_problems=input('Enter the Problem/Disease:')
p_phono=int(input('Enter Phone number:'))
sql_insert="insert into patient_details values(""'"+p_name+"',
"+str(p_age)+",'"+p_problems+"',"+str(p_phono)+")"
c1.execute(sql_insert)
print('SUCCESSFULLY REGISTERED')
conn.commit()
elif choice==2:
d_name=input('Enter Doctor Name:')
d_age=int(input('Enter Age:'))
d_department=input('Enter the Department:')
d_phono=int(input('Enter Phone number:'))
sql_insert="insert into doctor_details values(""'"+d_name+"',
"+str(d_age)+",'"+d_department+"',"+str(d_phono)+")"
c1.execute(sql_insert)
print('successfully registered')
conn.commit()
elif choice==3:
w_name=input('Enter Worker Name:')
w_age=int(input('Enter Age:'))
w_workname=input('Enter type of work:')
w_phono=int(input('Enter Phone number:'))
sql_insert="insert into worker_details values(""'"+w_name+"',
"+str(w_age)+",'"+w_workname+"',"+str(w_phono)+")"
c1.execute(sql_insert)
print('successfully registered')
conn.commit()
elif choice==4:
sql_w='select*from patient_details '
c1.execute(sql_w)
r = c1.fetchall()
for i in r :
print(i)
elif choice==5:
sql_x="select*from doctor_details"
c1.execute(sql_x)
s=c1.fetchall()
for i in s:
print(i)
elif choice==6:
sql_y="select*from worker_details"
c1.execute(sql_y)
t=c1.fetchall()
for i in t:
print(i)
elif choice==7:
h=input("Enter the name:")
sql_w='select*from patient_details where p_name=("{}")'.format(h)
c1.execute(sql_w)
u = c1.fetchall()
for i in u:
print(i)
elif choice==8:
d=input("Enter the name:")
sql_d='select*from doctor_details where p_name=("{}")'.format(d)
c1.execute(sql_d)
v=c1.fetchall()
for i in v:
print(i)
elif choice==9:
f=input("Enter the name:")
sql_f='select*from worker_details where p_name=("{}")'.format(f)
c1.execute(sql_f)
w=c1.fetchall()
for i in w:
print(i)
elif choice==10:
print()
print('a.Deleting Patient')
print('b.Deleting Doctor')
print('c.Deleting Workers')
print()
dc=input('ENTER YOUR CHOICE:')
if dc=='a':
p_name=input('Enter Patient Name:')
sql_insert='delete from patient_details where p_name=("{}")'
.format(p_name)
c1.execute(sql_insert)
print('successfully deleted')
elif dc=='b':
d_name=input('Enter Doctor Name:')
sql_insert='delete from patient_details where d_name=("{}")'
.format(d_name)
c1.execute(sql_insert)
print('successfully deleted')
elif dc=='c':
w_name=input('Enter Worker Name:')
sql_insert='delete from patient_details where w_name=("{}")'
.format(w_name)
c1.execute(sql_insert)
print('successfully deleted')
elif choice==13:
exit()
break
else:
print('wrong username&password')
elif choice==2:
print()
print("1.Customers Account")
print("2.Entering New Medicine")
print("3.Bill")
print()
option=int(input("enter a option:"))
if option==1:
account_number=int(input("enter your acct_number:"))
patient_name=input("enter your name:")
age=int(input("enter your age:"))
address=input("enter your address:")
phone_number=int(input("enter your number:"))
balance_amount=float(input("enter your amount:"))
x="insert into customers_details values("+str(account_
number)+",'"+patient_name+"',"+str(age)+",'"+addr ess+"',
"+str(phone_number)+","+str(balance_amount)+")"
c1.execute(x)
print("Account created congrats")
conn.commit()
if option==2:
medicine_name=input('Enter Medicine Name:')
medicine_code=int(input('Enter Medicine Code:'))
gst=float(input('Enter the gst:'))
sgst=float(input('Enter sgst:'))
total_cost=float(input('Enter cost_per_item:'))
y="insert into medicines_details values
('"+medicine_name+"',"+str(medicine_code)+",
"+str(gst)+","+str(sgst)+","+str(total_cost)+")"
c1.execute(y)
print('SUCCESSFULLY ENTERED')
conn.commit()
if option==3:
print(a)
patient_name=input("enter the patient_name :")
no=int(input('enter the number of medicine:'))
for i in range (no):
med_name=input('enter medicine name : ')
c1.execute("select medicine_code,gst,sgst,total_cost
from medicines_details where medicine_name like '"
+ str(med_name) +"'" )
data=c1.fetchall()
for row in data:
print('medicine_code of',med_name,':',row[0])
print('gst of',med_name,':',row[1])
print('sgst of',med_name,':',row[2])
print('cost_per_item of',med_name,':',row[3])
conn.commit()
account_number=input('enter account_number:')
c1.execute("select balance_amount from customers_details
where account_number like'"+str(account_number)+"'")
datas=c1.fetchall()
datas=list(datas[0])
datas=datas[0]
print(datas)
conn.commit()
print("rows affected:",c1.rowcount)
conn.commit()
quantity=int(input("enter the quantity:"))
total_amount=row[3]*quantity
print("total_amount of",med_name,':',total_amount)
v_sql_insert="insert into SS_bill (medicine_name,medicine_
code,gst,sgst,cost_per_item,quantity,discount_on_balance_
amount,total_amount)values('{}',{},{},{},{},{},{},{})"
.format(med_name,row[0],row[1],row[2],row[3],
quantity,datas,total_amount)
print(v_sql_insert)
c1.execute(v_sql_insert)
conn.commit()
print("Records added")
OUTPUT