New Format Microprojct
New Format Microprojct
PROJECT REPORT / SIZE-14
ON
SUBMITTED BY
( FONT SIZE -11)
GUIDED BY / SIZE-11
MISS.RASKAR. P.B. / SIZE-12
OF / SIZE-11
JAVA PROGRAMMING / SIZE -14
A.C.S.’S
DIPLOMA IN ENGINEERING AND TECHNOLOGY, ASHTI
(FONT SIZE-14)
ASC;S DIET
Medical store management system
A.C.S.’S
DIPLOMA IN ENGINEERING AND TECHNOLOGY, ASHTI/ size-
14
CERTIFICATE /size-16
This is to Certify that the project report entitled (project name )/ size-12
In The Academic Year 2023-2024 In The Partial Fulfilment Of fourth Semester Diploma in
Computer Engineering. It Is Certified That All Suggestion Indicated For Internal Assessment
Have Been Incorporated In Report. The Project Has Been Approved As It Satisfies The Academic
Requirement In Respect Work Prescribed For The Said Degree.
ASC;S DIET
Medical store management system
INDEX / SIZE-14
1 INTRODUCTION 1
3 ER DIAGRAM 6
4 LOGICAL DESIGN 7
5 SOURCE CODE 8
6 OUTPUT 10
7 CONCLUSION 12
8 REFERENCE 13
ASC;S DIET
Medical store management system
A medical store management system is a system for the management for the
database of pharmaceutical shop.
This is done by creating a database of the available medicines in the shop . the database is then
connected to the main program by using interconnection of the virtual basic program and the
database already created. / size-12
To manage all selection of the pharmacy like medicines, stock, sells, etc. which
improve the processing efficiency.
ASC;S DIET
Medical store management system
ASC;S DIET
Medical store management system
A process
Data Flow
Data storage
ASC;S DIET
Medical store management system
DATA DICTIONARY :
ADMIN :-
MEDS:-
ASC;S DIET
Medical store management system
SALES:-
ASC;S DIET
Medical store management system
ASC;S DIET
Medical store management system
LOGICAL DESIGN :-
ASC;S DIET
Medical store management system
Source code:-
public class Medicine {
// TODO Auto-generated method stub
private int id;
private String
name; private int
quantity; private
double price;
// Getters and setters
// Constructor
}
// Inventory management
class Inventory {
private list <Medicine> medicines;
public void addMedicine(Medicine medicine) {
// Add medicine to the inventory
}
public void sellMedicine(Medicine medicine, int
quantity) {
// Process a sale and update inventory
}
// Other inventory management methods
}
// Sales management
class Sales {
public void processSale(Medicine medicine, int
quantity,char customer) {
// Process the sale and update sales records
}
public double calculateProfit() {
// Calculate the total profit
}
// Other sales management methods
}
// User interface using Java Swing
class MedicalStoreUI {
private Inventory inventory;
private Sales sales;
// UI components and event handlers
class MedicalStoreUI{
private Inventory inventory;
public MedicalStoreUI(Inventory inventory) {
this.inventory = inventory;
// Initialize UI components and layout
ASC;S DIET
Medical store management system
}
public void displayMedicines() {
for (Medicine medicine : inventory.getMedicines()) {
System.out.println("Medicine ID: " +
medicine.getId()); System.out.println("Medicine
Name: " +
medicine.getName());
System.out.println("Quantity: " +
medicine.getQuantity()); System.out.println("Price:
" + medicine.getPrice()); System.out.println(" -
");
}
}
}
ASC;S DIET
Medical store management system
OUTPUT:-
ASC;S DIET
Medical store management system
ASC;S DIET
Medical store management system
CONCLUSION
The pharmacy management system is actually a software
which handle the essential data and save the data of a
pharmacy . This software helps in effectively management of
the pharmaceutical store .
It provide the statistics about the medicine which are in stocks
which data can also be updated and edited. It allows user to
enter manufacturing as well as expiry date of medicine placing
in stock and for sell transection . This software also have ability
to print the bill . The record of supplier supplies can also be
save in it . This is built to reduce the manual work for managing
the medicine , stock etc.
With very limited knowledge and very limited period of
time , it is really not easy to work out complete and perfect
software . Though I have tried my best to improve the quality of
software. There may be some limitations and drawbacks in it .
ASC;S DIET
Medical store management system
REFERANCE:
https://www.scribd.com
https://msbte.org.in/
https://www.programiz.com
ASC;S DIET
Medical store management system
ASC;S DIET