SlideShare a Scribd company logo
1 of 18
Hospitale
Manegment
System
Repot File
PRESENTED BY
M.Waseem Akram
Hasnat Raza
Muzzamil Khan
Naqqash KHalil
Repot File Hospital Management System
Page 1
Acknowledgment.
The satisfaction that accompanies that the successful
completion of any task would be incomplete without the
mention of people whose cease less cooperation made it
possible, whose constant guidance and encouragement
crown all efforts with success. I am grateful to our project
guide Miss Eng. Bushra Fazal and lab Eng. Ammarah for
the guidance, inspiration and constructive suggestions
that helpful us in the preparation of this project. I also
thank my colleagues who have helped in successful
completion of the project.
Repot File Hospital Management System
Page 2
Abstract.
Our project Hospital Management system includes
registration of patients, storing their details into the
system, and also computerized billing in the pharmacy,
and labs. Our software has the facility to give a unique id
for every patient and stores the details of every patient
and the staff automatically. It includes a search facility to
know the current status of each room. User can search
availability of a doctor and the details of a patient using
the id. The Hospital Management System can be entered
using a username and password. It is accessible either by
an administrator or receptionist. Only they can add data
into the database. The data can be retrieved easily. The
interface is very user-friendly. The data are well
protected for personal use and makes the data processing
very fast.
Repot File Hospital Management System
Page 3
Table of Contents
Chapter 01 .................................................................................................... 1
Introduction ................................................................................................ 2
Work Flow .................................................................................................. 3
Chapter 02 .................................................................................................... 4
Design .......................................................................................................... 5
ERD of Project ............................................................................................ 6
Chapter03………………………………………………………………7
Code……………………………………………………………………8
Implementation………………………………………………………..9
Repot File Hospital Management System
Page 4
Chapter 01
Introduction to Organization
Hospital Management System
Descriptionof the project:
Hospital are the essential part of our lives, providing best medical facilities to
people suffering from various ailments, which may be due to change in climatic
conditions, increased work-load, emotional trauma stress etc. It is necessary for the
hospitals to keep track of its day-to-day activities & records ofits patients, doctors,
nurses, ward boys and other staff personals that keep the hospital running smoothly
& successfully.
But keeping track of all the activities and their records on paper is very
cumbersome and error prone. It also is very inefficient and a time-consuming
process Observing the continuous increase in population and number of people
visiting the hospital. Recording and maintaining all these records is highly
unreliable, inefficient and error-prone. It is also not economically & technically
feasible to maintain these records on paper.
Thus keeping the working of the manual system as the basis of our project. We
have developed an automated version of the manual system, named as “Hospital
Management System”.
The main aim of our project is to provide a paper-less hospital up to 90%. It also
aims at providing low-cost reliable automation of the existing systems. The system
also provides excellent security of data at every level of user-system interaction
and also provides robust & reliable storage and backup facilities.
Repot File Hospital Management System
Page 5
Objectives of the system:
The project “Hospital management system” is aimed to develop to maintain the day –to-
day state of admission/discharge of patients, list of doctors, reports generation, and etc. It is
designed to achieve the following objectives:
1. To computerize all details regarding patient details & hospital details.
2. Scheduling the appointment of patient with doctors to make it convenient for
both.
3. Scheduling the services of specialized doctors and emergency properly so
that facilities provided by hospital are fully utilized in effective and efficient
manner.
4. If the medical store issues medicines to patients, it should reduce the stock
status of the medical store and vice-versa.
5. It should be able to handle the test reports of patients conducted in the
pathology lab of the hospital.
6. The inventory should be updated automatically whenever a transaction is
made.
7. The information of the patients should be kept up to date and there record
should be kept in the system for historical purposes.
Repot File Hospital Management System
Page 6
Primary data collection
 Raw data (also known as primary data) is a term for data collected from a source. Raw
data has not been subjected to processing or any other manipulation, and are also referred
to as primary data.
 Primary data is a type of information that is obtained directly from first-hand sources by
means of surveys, observation or experimentation. It is data that has not been previously
published and is derived from a new or original research study and collected at the source
such as in marketing.
 Primary data collection are observed and recorded directly from
respondents. The information collected is directly related to the specific
research problem identified. All the questions that one asks the respondents
must be totally unbiased and formulated so that all the different respondents
understand it.
Repot File Hospital Management System
Page 7
Software Requirement Specification
A Software requirements specification (SRS), a requirements specification for a
software system, is a complete description of the behavior of a system to be
developed and may include a set of use cases that describe interactions the users
will have with the software. In addition it also contains non-functional
requirements. Non-functional requirements impose constraints on the design or
implementation (such as performance engineering requirements, quality standards,
or design constraints).
Definitions, Acronyms and Abbreviations
CFD: – Context Flow Diagram
DFD: – Data Flow Diagram
IDE: – Integrated Development Environment
SQL: – Structured Query Language
SRS:– Software Requirement Specification.
GUI: - Graphical User Interface
Repot File Hospital Management System
Page 8
Chapter 02:
Design & ERD
Data Flow
Design.
ERD
Repot File Hospital Management System
Page 9
Next
Level
Repot File Hospital Management System
Page
10
Complete ERD
Repot File Hospital Management System
Page
11
Chapter 03
Implementation (CODE)
create table hospital
(
code int primarykey,
city varchar(100),
name varchar(100),
country varchar(100),
total_staffint,
tel varchar(100)
);
--------------------------------------
Repot File Hospital Management System
Page
12
create table reception(
code int,
id int primarykey,
name varchar(100),
city varchar(100),
age int,
tel varchar(100)
);
-----------------------------------------
create table pateint(
name varchar(100),
age int primary key,
id int,
city varchar(100),
bloodgrp varchar(100),
Repot File Hospital Management System
Page
13
country varchar(100),
contact_no varchar(100)
);
--------------------------------------------
create table surgeon(
name varchar(100),
age int,
id int primarykey,
city varchar(100),
country varchar(100),
contact_no varchar(100)
);
-----------------------------------------
create table bloodbank(
name varchar(100),
Repot File Hospital Management System
Page
14
age int,
id int,
city varchar(100),
bloodgrp varchar(100),
contact_no varchar(100)
);
-----------------------------------------
alter table reception add constraintfk_codeforeign key(code)
references hospital(code)
alter table pateint add constraintfk_id foreign key(id)references
reception(id)
alter table surgeonadd constraintfk_ageforeign key (age)references
pateint(age)
alter table bloodbank add constraintfk_iid foreign key (id) references
surgeon(id)
-------------------------------------------------------------------
insertinto hospital(code,city,name,country,total_staff,tel)
Repot File Hospital Management System
Page
15
values(021,'Karachi','Waseem','Pakistan',20,'0900-78601')
-----------------------------------------------------------------------
insertinto reception(code,id,name,city,age,tel)
values(021,01,'Waseem','Karachi',20,'03078203930')
insertinto reception(code,id,name,city,age,tel)
values(021,02,'Hasnat','Karachi',21,'03421233956')
insertinto reception(code,id,name,city,age,tel)
values(021,03,'Muzzamil','Lahore',21,'03215678903')
insertinto reception(code,id,name,city,age,tel)
values(021,04,'Naqqash','Karachi',23,'03123459856')
-------------------------------------------------------------------------------
insertinto pateint(name,age,id,city,bloodgrp,country,contact_no)
values('Waseem',12,01,'Lahore','A+ve','Pakistan','03001234567')
insertinto pateint(name,age,id,city,bloodgrp,country,contact_no)
Repot File Hospital Management System
Page
16
values ('Hasnat',13,01,'Karachi','A+ve','Pakistan','03425678540')
insertinto pateint(name,age,id,city,bloodgrp,country,contact_no)
values ('Muzzamil',14,01,'Lahore','A-ve','Pakistan','0345678903')
insertinto pateint(name,age,id,city,bloodgrp,country,contact_no)
values ('Naqqash',15,01,'Karachi','A+ve','Pakistan','03213456703')
--------------------------------------------
insertinto surgeon(name,age,id,city,country,contact_no)
values('Waseem',12,0323,'Kci','Pakistan','03245869042')
insertinto surgeon(name,age,id,city,country,contact_no)
values('Hasnat',13,032,'Kci','Lahore','-021356780432')
insertinto surgeon(name,age,id,city,country,contact_no)
values('Muzzamil',14,0132,'Lhr','Karachi','03004567893')
insertinto surgeon(name,age,id,city,country,contact_no)
Repot File Hospital Management System
Page
17
values('Naqqash',15,01323,'Isb','Lahore','03224576894')
---------------------------------------------------------------------
insertinto bloodbank(name,age,id,city,bloodgrp,contact_no)
values ('waseem',12,0323,'Lhr','A','021357689043')
insertinto bloodbank(name,age,id,city,bloodgrp,contact_no)
values ('Hasnat',13,032,'Isb','B','03456784390')
insertinto bloodbank(name,age,id,city,bloodgrp,contact_no)
values ('Muzzamil',14,0132,'Kci','A','03255867431')
insertinto bloodbank(name,age,id,city,bloodgrp,contact_no)
values ('Naqqash',16,01323,'Lhr','A','03224758352')
-------------------------------------------------------------------------

More Related Content

What's hot

PROJECT-HOSPITAL MANAGEMENT SYSTEM CHAP. 1 TO 4
PROJECT-HOSPITAL MANAGEMENT SYSTEM CHAP. 1 TO 4PROJECT-HOSPITAL MANAGEMENT SYSTEM CHAP. 1 TO 4
PROJECT-HOSPITAL MANAGEMENT SYSTEM CHAP. 1 TO 4
NICHOLAS RATEMO
 
Hospital management-system
Hospital management-systemHospital management-system
Hospital management-system
sam143143
 
Online clinic reservation
Online clinic reservationOnline clinic reservation
Online clinic reservation
May Ann Mas
 

What's hot (20)

Hospital management first review
Hospital management first reviewHospital management first review
Hospital management first review
 
App based e-medicare(online Pharmacy Management system)
App based e-medicare(online Pharmacy Management system)App based e-medicare(online Pharmacy Management system)
App based e-medicare(online Pharmacy Management system)
 
Hotel management synopsis
Hotel management synopsisHotel management synopsis
Hotel management synopsis
 
Hospital managment system
Hospital managment systemHospital managment system
Hospital managment system
 
PROJECT-HOSPITAL MANAGEMENT SYSTEM CHAP. 1 TO 4
PROJECT-HOSPITAL MANAGEMENT SYSTEM CHAP. 1 TO 4PROJECT-HOSPITAL MANAGEMENT SYSTEM CHAP. 1 TO 4
PROJECT-HOSPITAL MANAGEMENT SYSTEM CHAP. 1 TO 4
 
Hospital Management System
Hospital Management SystemHospital Management System
Hospital Management System
 
Hospital management system
Hospital management systemHospital management system
Hospital management system
 
Hospital management synopsis
Hospital management synopsisHospital management synopsis
Hospital management synopsis
 
E M S ppt (1).pptx
E M S ppt (1).pptxE M S ppt (1).pptx
E M S ppt (1).pptx
 
Hospital management system
Hospital management systemHospital management system
Hospital management system
 
Pharmacy Management System
Pharmacy Management SystemPharmacy Management System
Pharmacy Management System
 
Final major project presentation on (10 april2016) aits haldwani
Final major project  presentation on (10 april2016) aits haldwaniFinal major project  presentation on (10 april2016) aits haldwani
Final major project presentation on (10 april2016) aits haldwani
 
Pharmacy management system by Asiqul Islam
Pharmacy management system by Asiqul IslamPharmacy management system by Asiqul Islam
Pharmacy management system by Asiqul Islam
 
Employee Management System UML Diagrams Use Case Diagram, Activity Diagram, S...
Employee Management System UML Diagrams Use Case Diagram, Activity Diagram, S...Employee Management System UML Diagrams Use Case Diagram, Activity Diagram, S...
Employee Management System UML Diagrams Use Case Diagram, Activity Diagram, S...
 
hospital management system.docx
hospital management system.docxhospital management system.docx
hospital management system.docx
 
Hospital management-system
Hospital management-systemHospital management-system
Hospital management-system
 
Online clinic reservation
Online clinic reservationOnline clinic reservation
Online clinic reservation
 
Library management system
Library management systemLibrary management system
Library management system
 
User stories
User storiesUser stories
User stories
 
Employee Management System Project Propsal
Employee Management System Project Propsal Employee Management System Project Propsal
Employee Management System Project Propsal
 

Viewers also liked

Steve Jones - Development of Civil Engineering Design skills through active l...
Steve Jones - Development of Civil Engineering Design skills through active l...Steve Jones - Development of Civil Engineering Design skills through active l...
Steve Jones - Development of Civil Engineering Design skills through active l...
Educational Development Division, University of Liverpool
 
Student result mamagement
Student result mamagementStudent result mamagement
Student result mamagement
Mickey
 
AUTOMATED FOOTBALL MANAGEMENT SYSTEM
AUTOMATED FOOTBALL MANAGEMENT SYSTEMAUTOMATED FOOTBALL MANAGEMENT SYSTEM
AUTOMATED FOOTBALL MANAGEMENT SYSTEM
Abhishek Kumar
 
Student database management system
Student database management systemStudent database management system
Student database management system
Snehal Raut
 

Viewers also liked (10)

Steve Jones - Development of Civil Engineering Design skills through active l...
Steve Jones - Development of Civil Engineering Design skills through active l...Steve Jones - Development of Civil Engineering Design skills through active l...
Steve Jones - Development of Civil Engineering Design skills through active l...
 
Pharmacy management
Pharmacy managementPharmacy management
Pharmacy management
 
Student result mamagement
Student result mamagementStudent result mamagement
Student result mamagement
 
LOW COST HOUSING
LOW COST HOUSING LOW COST HOUSING
LOW COST HOUSING
 
Low cost housing India
Low cost housing IndiaLow cost housing India
Low cost housing India
 
AUTOMATED FOOTBALL MANAGEMENT SYSTEM
AUTOMATED FOOTBALL MANAGEMENT SYSTEMAUTOMATED FOOTBALL MANAGEMENT SYSTEM
AUTOMATED FOOTBALL MANAGEMENT SYSTEM
 
Student database management system
Student database management systemStudent database management system
Student database management system
 
Project report RAILWAY TICKET RESERVATION SYSTEM SAD
Project report RAILWAY TICKET RESERVATION SYSTEM SADProject report RAILWAY TICKET RESERVATION SYSTEM SAD
Project report RAILWAY TICKET RESERVATION SYSTEM SAD
 
School Management System
School Management SystemSchool Management System
School Management System
 
Build Features, Not Apps
Build Features, Not AppsBuild Features, Not Apps
Build Features, Not Apps
 

Similar to Repot on-hospital-manegment-system

Hospital management system project
Hospital management system projectHospital management system project
Hospital management system project
Himani Chopra
 
Hospitalmanagementsystemproject 140513065037-phpapp02
Hospitalmanagementsystemproject 140513065037-phpapp02Hospitalmanagementsystemproject 140513065037-phpapp02
Hospitalmanagementsystemproject 140513065037-phpapp02
Shekhar Prasad
 
503400047-FYP-1-Presentation.pptxnbhsbswbebsbwbsnsjdjdxjdjddhhddh
503400047-FYP-1-Presentation.pptxnbhsbswbebsbwbsnsjdjdxjdjddhhddh503400047-FYP-1-Presentation.pptxnbhsbswbebsbwbsnsjdjdxjdjddhhddh
503400047-FYP-1-Presentation.pptxnbhsbswbebsbwbsnsjdjdxjdjddhhddh
pashamshashanthrao
 
Topic: Hospital Management System | Course: Management Information System | B...
Topic: Hospital Management System | Course: Management Information System | B...Topic: Hospital Management System | Course: Management Information System | B...
Topic: Hospital Management System | Course: Management Information System | B...
Binte Zahra
 

Similar to Repot on-hospital-manegment-system (20)

Electronic Medical Regulation
Electronic Medical RegulationElectronic Medical Regulation
Electronic Medical Regulation
 
Synopsis of hms(Hospital Management System)
Synopsis of hms(Hospital Management System)Synopsis of hms(Hospital Management System)
Synopsis of hms(Hospital Management System)
 
Hospital management system project
Hospital management system projectHospital management system project
Hospital management system project
 
Hospitalmanagementsystemproject 140513065037-phpapp02
Hospitalmanagementsystemproject 140513065037-phpapp02Hospitalmanagementsystemproject 140513065037-phpapp02
Hospitalmanagementsystemproject 140513065037-phpapp02
 
HOSPITAL MANAGEMENT SYSTEM PROJECT
HOSPITAL MANAGEMENT SYSTEM PROJECTHOSPITAL MANAGEMENT SYSTEM PROJECT
HOSPITAL MANAGEMENT SYSTEM PROJECT
 
Hospital Management System proposal
Hospital Management System proposalHospital Management System proposal
Hospital Management System proposal
 
PATIENT MANAGEMENT SYSTEM project
PATIENT MANAGEMENT SYSTEM projectPATIENT MANAGEMENT SYSTEM project
PATIENT MANAGEMENT SYSTEM project
 
Hospital Management Record System Proposal
Hospital Management Record System ProposalHospital Management Record System Proposal
Hospital Management Record System Proposal
 
Online doctor appointment
Online doctor appointmentOnline doctor appointment
Online doctor appointment
 
Web Blog - How to Develop a Hospital Management System in 2024.pdf
Web Blog - How to Develop a Hospital Management System in 2024.pdfWeb Blog - How to Develop a Hospital Management System in 2024.pdf
Web Blog - How to Develop a Hospital Management System in 2024.pdf
 
503400047-FYP-1-Presentation.pptxnbhsbswbebsbwbsnsjdjdxjdjddhhddh
503400047-FYP-1-Presentation.pptxnbhsbswbebsbwbsnsjdjdxjdjddhhddh503400047-FYP-1-Presentation.pptxnbhsbswbebsbwbsnsjdjdxjdjddhhddh
503400047-FYP-1-Presentation.pptxnbhsbswbebsbwbsnsjdjdxjdjddhhddh
 
HSPTL PPT UPDT
HSPTL PPT UPDTHSPTL PPT UPDT
HSPTL PPT UPDT
 
Software specification for
Software specification forSoftware specification for
Software specification for
 
Topic: Hospital Management System | Course: Management Information System | B...
Topic: Hospital Management System | Course: Management Information System | B...Topic: Hospital Management System | Course: Management Information System | B...
Topic: Hospital Management System | Course: Management Information System | B...
 
Hospital management system
Hospital management systemHospital management system
Hospital management system
 
GP
GPGP
GP
 
HMS Suryakant 1819067.pptx
HMS Suryakant 1819067.pptxHMS Suryakant 1819067.pptx
HMS Suryakant 1819067.pptx
 
Sibyl HIMS: Hospital Information & Management System
Sibyl HIMS: Hospital Information & Management SystemSibyl HIMS: Hospital Information & Management System
Sibyl HIMS: Hospital Information & Management System
 
SRS for Hospital Management System
SRS for Hospital Management SystemSRS for Hospital Management System
SRS for Hospital Management System
 
HOSPITAL MANAGEMENT SYSTEMS: FEATURES, REQUIREMENTS AND BENEFITS
HOSPITAL MANAGEMENT SYSTEMS: FEATURES, REQUIREMENTS AND BENEFITSHOSPITAL MANAGEMENT SYSTEMS: FEATURES, REQUIREMENTS AND BENEFITS
HOSPITAL MANAGEMENT SYSTEMS: FEATURES, REQUIREMENTS AND BENEFITS
 

Recently uploaded

1029 - Danh muc Sach Giao Khoa 10 . pdf
1029 -  Danh muc Sach Giao Khoa 10 . pdf1029 -  Danh muc Sach Giao Khoa 10 . pdf
1029 - Danh muc Sach Giao Khoa 10 . pdf
QucHHunhnh
 
Spellings Wk 3 English CAPS CARES Please Practise
Spellings Wk 3 English CAPS CARES Please PractiseSpellings Wk 3 English CAPS CARES Please Practise
Spellings Wk 3 English CAPS CARES Please Practise
AnaAcapella
 

Recently uploaded (20)

Fostering Friendships - Enhancing Social Bonds in the Classroom
Fostering Friendships - Enhancing Social Bonds  in the ClassroomFostering Friendships - Enhancing Social Bonds  in the Classroom
Fostering Friendships - Enhancing Social Bonds in the Classroom
 
How to Give a Domain for a Field in Odoo 17
How to Give a Domain for a Field in Odoo 17How to Give a Domain for a Field in Odoo 17
How to Give a Domain for a Field in Odoo 17
 
How to Create and Manage Wizard in Odoo 17
How to Create and Manage Wizard in Odoo 17How to Create and Manage Wizard in Odoo 17
How to Create and Manage Wizard in Odoo 17
 
Python Notes for mca i year students osmania university.docx
Python Notes for mca i year students osmania university.docxPython Notes for mca i year students osmania university.docx
Python Notes for mca i year students osmania university.docx
 
Spatium Project Simulation student brief
Spatium Project Simulation student briefSpatium Project Simulation student brief
Spatium Project Simulation student brief
 
SOC 101 Demonstration of Learning Presentation
SOC 101 Demonstration of Learning PresentationSOC 101 Demonstration of Learning Presentation
SOC 101 Demonstration of Learning Presentation
 
Sociology 101 Demonstration of Learning Exhibit
Sociology 101 Demonstration of Learning ExhibitSociology 101 Demonstration of Learning Exhibit
Sociology 101 Demonstration of Learning Exhibit
 
Google Gemini An AI Revolution in Education.pptx
Google Gemini An AI Revolution in Education.pptxGoogle Gemini An AI Revolution in Education.pptx
Google Gemini An AI Revolution in Education.pptx
 
Introduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The BasicsIntroduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The Basics
 
ICT Role in 21st Century Education & its Challenges.pptx
ICT Role in 21st Century Education & its Challenges.pptxICT Role in 21st Century Education & its Challenges.pptx
ICT Role in 21st Century Education & its Challenges.pptx
 
1029 - Danh muc Sach Giao Khoa 10 . pdf
1029 -  Danh muc Sach Giao Khoa 10 . pdf1029 -  Danh muc Sach Giao Khoa 10 . pdf
1029 - Danh muc Sach Giao Khoa 10 . pdf
 
UGC NET Paper 1 Mathematical Reasoning & Aptitude.pdf
UGC NET Paper 1 Mathematical Reasoning & Aptitude.pdfUGC NET Paper 1 Mathematical Reasoning & Aptitude.pdf
UGC NET Paper 1 Mathematical Reasoning & Aptitude.pdf
 
Spellings Wk 3 English CAPS CARES Please Practise
Spellings Wk 3 English CAPS CARES Please PractiseSpellings Wk 3 English CAPS CARES Please Practise
Spellings Wk 3 English CAPS CARES Please Practise
 
On National Teacher Day, meet the 2024-25 Kenan Fellows
On National Teacher Day, meet the 2024-25 Kenan FellowsOn National Teacher Day, meet the 2024-25 Kenan Fellows
On National Teacher Day, meet the 2024-25 Kenan Fellows
 
Unit-V; Pricing (Pharma Marketing Management).pptx
Unit-V; Pricing (Pharma Marketing Management).pptxUnit-V; Pricing (Pharma Marketing Management).pptx
Unit-V; Pricing (Pharma Marketing Management).pptx
 
Holdier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdfHoldier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdf
 
Understanding Accommodations and Modifications
Understanding  Accommodations and ModificationsUnderstanding  Accommodations and Modifications
Understanding Accommodations and Modifications
 
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...
 
Basic Civil Engineering first year Notes- Chapter 4 Building.pptx
Basic Civil Engineering first year Notes- Chapter 4 Building.pptxBasic Civil Engineering first year Notes- Chapter 4 Building.pptx
Basic Civil Engineering first year Notes- Chapter 4 Building.pptx
 
SKILL OF INTRODUCING THE LESSON MICRO SKILLS.pptx
SKILL OF INTRODUCING THE LESSON MICRO SKILLS.pptxSKILL OF INTRODUCING THE LESSON MICRO SKILLS.pptx
SKILL OF INTRODUCING THE LESSON MICRO SKILLS.pptx
 

Repot on-hospital-manegment-system

  • 1. Hospitale Manegment System Repot File PRESENTED BY M.Waseem Akram Hasnat Raza Muzzamil Khan Naqqash KHalil
  • 2. Repot File Hospital Management System Page 1 Acknowledgment. The satisfaction that accompanies that the successful completion of any task would be incomplete without the mention of people whose cease less cooperation made it possible, whose constant guidance and encouragement crown all efforts with success. I am grateful to our project guide Miss Eng. Bushra Fazal and lab Eng. Ammarah for the guidance, inspiration and constructive suggestions that helpful us in the preparation of this project. I also thank my colleagues who have helped in successful completion of the project.
  • 3. Repot File Hospital Management System Page 2 Abstract. Our project Hospital Management system includes registration of patients, storing their details into the system, and also computerized billing in the pharmacy, and labs. Our software has the facility to give a unique id for every patient and stores the details of every patient and the staff automatically. It includes a search facility to know the current status of each room. User can search availability of a doctor and the details of a patient using the id. The Hospital Management System can be entered using a username and password. It is accessible either by an administrator or receptionist. Only they can add data into the database. The data can be retrieved easily. The interface is very user-friendly. The data are well protected for personal use and makes the data processing very fast.
  • 4. Repot File Hospital Management System Page 3 Table of Contents Chapter 01 .................................................................................................... 1 Introduction ................................................................................................ 2 Work Flow .................................................................................................. 3 Chapter 02 .................................................................................................... 4 Design .......................................................................................................... 5 ERD of Project ............................................................................................ 6 Chapter03………………………………………………………………7 Code……………………………………………………………………8 Implementation………………………………………………………..9
  • 5. Repot File Hospital Management System Page 4 Chapter 01 Introduction to Organization Hospital Management System Descriptionof the project: Hospital are the essential part of our lives, providing best medical facilities to people suffering from various ailments, which may be due to change in climatic conditions, increased work-load, emotional trauma stress etc. It is necessary for the hospitals to keep track of its day-to-day activities & records ofits patients, doctors, nurses, ward boys and other staff personals that keep the hospital running smoothly & successfully. But keeping track of all the activities and their records on paper is very cumbersome and error prone. It also is very inefficient and a time-consuming process Observing the continuous increase in population and number of people visiting the hospital. Recording and maintaining all these records is highly unreliable, inefficient and error-prone. It is also not economically & technically feasible to maintain these records on paper. Thus keeping the working of the manual system as the basis of our project. We have developed an automated version of the manual system, named as “Hospital Management System”. The main aim of our project is to provide a paper-less hospital up to 90%. It also aims at providing low-cost reliable automation of the existing systems. The system also provides excellent security of data at every level of user-system interaction and also provides robust & reliable storage and backup facilities.
  • 6. Repot File Hospital Management System Page 5 Objectives of the system: The project “Hospital management system” is aimed to develop to maintain the day –to- day state of admission/discharge of patients, list of doctors, reports generation, and etc. It is designed to achieve the following objectives: 1. To computerize all details regarding patient details & hospital details. 2. Scheduling the appointment of patient with doctors to make it convenient for both. 3. Scheduling the services of specialized doctors and emergency properly so that facilities provided by hospital are fully utilized in effective and efficient manner. 4. If the medical store issues medicines to patients, it should reduce the stock status of the medical store and vice-versa. 5. It should be able to handle the test reports of patients conducted in the pathology lab of the hospital. 6. The inventory should be updated automatically whenever a transaction is made. 7. The information of the patients should be kept up to date and there record should be kept in the system for historical purposes.
  • 7. Repot File Hospital Management System Page 6 Primary data collection  Raw data (also known as primary data) is a term for data collected from a source. Raw data has not been subjected to processing or any other manipulation, and are also referred to as primary data.  Primary data is a type of information that is obtained directly from first-hand sources by means of surveys, observation or experimentation. It is data that has not been previously published and is derived from a new or original research study and collected at the source such as in marketing.  Primary data collection are observed and recorded directly from respondents. The information collected is directly related to the specific research problem identified. All the questions that one asks the respondents must be totally unbiased and formulated so that all the different respondents understand it.
  • 8. Repot File Hospital Management System Page 7 Software Requirement Specification A Software requirements specification (SRS), a requirements specification for a software system, is a complete description of the behavior of a system to be developed and may include a set of use cases that describe interactions the users will have with the software. In addition it also contains non-functional requirements. Non-functional requirements impose constraints on the design or implementation (such as performance engineering requirements, quality standards, or design constraints). Definitions, Acronyms and Abbreviations CFD: – Context Flow Diagram DFD: – Data Flow Diagram IDE: – Integrated Development Environment SQL: – Structured Query Language SRS:– Software Requirement Specification. GUI: - Graphical User Interface
  • 9. Repot File Hospital Management System Page 8 Chapter 02: Design & ERD Data Flow Design. ERD
  • 10. Repot File Hospital Management System Page 9 Next Level
  • 11. Repot File Hospital Management System Page 10 Complete ERD
  • 12. Repot File Hospital Management System Page 11 Chapter 03 Implementation (CODE) create table hospital ( code int primarykey, city varchar(100), name varchar(100), country varchar(100), total_staffint, tel varchar(100) ); --------------------------------------
  • 13. Repot File Hospital Management System Page 12 create table reception( code int, id int primarykey, name varchar(100), city varchar(100), age int, tel varchar(100) ); ----------------------------------------- create table pateint( name varchar(100), age int primary key, id int, city varchar(100), bloodgrp varchar(100),
  • 14. Repot File Hospital Management System Page 13 country varchar(100), contact_no varchar(100) ); -------------------------------------------- create table surgeon( name varchar(100), age int, id int primarykey, city varchar(100), country varchar(100), contact_no varchar(100) ); ----------------------------------------- create table bloodbank( name varchar(100),
  • 15. Repot File Hospital Management System Page 14 age int, id int, city varchar(100), bloodgrp varchar(100), contact_no varchar(100) ); ----------------------------------------- alter table reception add constraintfk_codeforeign key(code) references hospital(code) alter table pateint add constraintfk_id foreign key(id)references reception(id) alter table surgeonadd constraintfk_ageforeign key (age)references pateint(age) alter table bloodbank add constraintfk_iid foreign key (id) references surgeon(id) ------------------------------------------------------------------- insertinto hospital(code,city,name,country,total_staff,tel)
  • 16. Repot File Hospital Management System Page 15 values(021,'Karachi','Waseem','Pakistan',20,'0900-78601') ----------------------------------------------------------------------- insertinto reception(code,id,name,city,age,tel) values(021,01,'Waseem','Karachi',20,'03078203930') insertinto reception(code,id,name,city,age,tel) values(021,02,'Hasnat','Karachi',21,'03421233956') insertinto reception(code,id,name,city,age,tel) values(021,03,'Muzzamil','Lahore',21,'03215678903') insertinto reception(code,id,name,city,age,tel) values(021,04,'Naqqash','Karachi',23,'03123459856') ------------------------------------------------------------------------------- insertinto pateint(name,age,id,city,bloodgrp,country,contact_no) values('Waseem',12,01,'Lahore','A+ve','Pakistan','03001234567') insertinto pateint(name,age,id,city,bloodgrp,country,contact_no)
  • 17. Repot File Hospital Management System Page 16 values ('Hasnat',13,01,'Karachi','A+ve','Pakistan','03425678540') insertinto pateint(name,age,id,city,bloodgrp,country,contact_no) values ('Muzzamil',14,01,'Lahore','A-ve','Pakistan','0345678903') insertinto pateint(name,age,id,city,bloodgrp,country,contact_no) values ('Naqqash',15,01,'Karachi','A+ve','Pakistan','03213456703') -------------------------------------------- insertinto surgeon(name,age,id,city,country,contact_no) values('Waseem',12,0323,'Kci','Pakistan','03245869042') insertinto surgeon(name,age,id,city,country,contact_no) values('Hasnat',13,032,'Kci','Lahore','-021356780432') insertinto surgeon(name,age,id,city,country,contact_no) values('Muzzamil',14,0132,'Lhr','Karachi','03004567893') insertinto surgeon(name,age,id,city,country,contact_no)
  • 18. Repot File Hospital Management System Page 17 values('Naqqash',15,01323,'Isb','Lahore','03224576894') --------------------------------------------------------------------- insertinto bloodbank(name,age,id,city,bloodgrp,contact_no) values ('waseem',12,0323,'Lhr','A','021357689043') insertinto bloodbank(name,age,id,city,bloodgrp,contact_no) values ('Hasnat',13,032,'Isb','B','03456784390') insertinto bloodbank(name,age,id,city,bloodgrp,contact_no) values ('Muzzamil',14,0132,'Kci','A','03255867431') insertinto bloodbank(name,age,id,city,bloodgrp,contact_no) values ('Naqqash',16,01323,'Lhr','A','03224758352') -------------------------------------------------------------------------