Skip to main content

Medical Center Management System (Devoloped using Java and MySQL)

This system is designed and developed with the intention of  meeting the essential functionalities of a medical center. This system is developed using Java and MySQL by me and another four students as the second year second semester ITP project.

The receptionist,pharmacist,doctors,lab assistant and admin can log in and access the system using their username and password.

Basically,

A pharmacist can,
1.Add a drug to the inventory
2.Update received order details
3.Update the inventory when issuing drugs and send an alert to the suppliers when a drug is reaching its marginal level.
4.Suggest alternatives when the prescribed drug is not available.
5.Generate pharmacy and inventory related reports

A doctor can,
1.Prescribe drugs and medicine to a patient
2.View and update the medical history of the patient
3.Generate patient related reports 

A receptionist can,
1.Register a patient
2.Deal with the payments and billing
3.Add/Reschedule/Cancel appointments
4.Manage sessions
5.Generate appointments and sessions related reports 
6.Generate bills

A lab assistant can,
1.Update the system with the lab report details
2.Generate lab reports

An admin can,
1.Manage employee details
2.Create users
3.Manage assets
3.Calculate salaries
4. Generate salary reports

Going beyond our clients requirements we could implement a method to send a text message to the patient's given mobile number when an appointment is made.


Below are some key interfaces of our medical center management system.











Comments

Popular posts from this blog

Getting started with Spring Boot

In this blog post I am gonna give you all an introduction on Spring Boot, an application framework and inversion controller for the java platform. Before diving in to Spring Boot framework, let's get a brief idea about the Spring framework on top of which the Spring Boot was created. Spring is a very popular application framework for java web and enterprise and web applications which was initially written by Rod Johnson.Millions and millions of people around the world use this to make their codes high performing, easily testable and reusable.Spring framework is build on top of the Dependency Injection (DI) concept. What is Dependency Injection? When it comes to a complex java application, the classes should not be depending on one another, in order to reuse our code and to make the unit testing easy.For such situations, dependency injection is used to connect the classes together while making them independent.So what exactly happens here? Let's think of Dependency in...

Getting started with React js

In this blog post, I'm gonna explain you all about React js, a javascript technology that is used to create interactive single page applications.

Noob introduction to Node.js

In this blog post I am gonna give you all a brief idea about Node.js. Earlier JavaScript was purely used for client side scripting, and it was embedded to a html page.But the node js developers use it for server side scripting(to produce the content of dynamic web pages before sending it to the user.) Node.js is an open source, cross platform run-time environment that executes JavaScript code server side. Why node.js? Node.js uses asynchronous programming. When a file request comes a ASP/PHP file would, Send the task to the computer's file system. Wait for the system to open and read the file. Sends the respond back to the client Get ready to handle the next task. But as node.js is using asynchronous programming, it would handle the request in a different manner.It would, Send the task to the computer's file system. Handles the next coming task. Returns the respond of the first task to the client when the system has completed it. In brief it reduces wa...