You are on page 1of 9

SRI KUMARAN

PUBLIC SENIOR SECONDARY SCHOOL

COMPUTER SCIENCE PROJECT:


MEDICINE STOCK CHECKING SYSTEM

BY:
AKILESH.S
TABLE OF CONTENTS:
 INTRODUCTION
 PROPOSED SYSTEM
 OBJECTIVE OF THIS PROJECT
 HARDWARE AND SOFTWARE REQUIREMENTS
 Basic Codings
 OUTPUT
 BIBLIOGRAPHY
INTRODUCTION:
PYTHON:
This project is made using python. Python is a high-level,
general-purpose programming language. Its design
philosophy emphasizes code readability with the use of
significant indentation. Python is dynamically-typed and
garbage-collected. It supports multiple programming
paradigms, including structured (particularly procedural),
object-oriented and functional programming.
Proposed System:

The Medical Store Management System Project in Python is


created using python programming language. Medical Store
Management System consists of a Python Script (main.py) and a
database file. This python projects with source code for Medical Store
Management System is primarily based on Tkinter. This system has a
graphical user interface applied by using the Python programming
language and SQLite3.

This Project System for Medical stock checking system has an easy


to use interface and is built with respected customer service to allow
stock maintenance, database access and electronic documentation for
billing purposes. The program also encourages consumer computing
discounts, frequent revenue, and identifies measures to avoid possible
loss of revenue.

This system platform is best for educational purposes or can be used to


simplify the manual maintenance process of records and cash flows by
a wide range of retail and wholesale outlets. It’s more versatile and
saves you time and money. It System measures and shows the overall
daily sales and also tells the items about the expiry of the coming week.
OBJECTIVES OF THIS PROJECT:

The main objective of the Python Project on MEDICINE STOCK CHECKING


SYSTEM is to manage the details of Company, Medicines, Inventory,
Stocks,Medical Shop. It manages all the information about Company, Sells,

Medical Shop, Company.

These are the functionalities of this project.


Hardware and Software requirements:
Hardware requirements:
Processor : Intel or AMD processor
Processor speed : min.2.00 GHz
Ram : 512 mb RAM
HARD DISK : 50 Gb

Software Requirements:
Operating system: windows 7 or above
IDE : Python IDLE
Basic codings:

from tkinter import *


from PIL import Image, ImageTk
import random
from tkinter import ttk, messagebox
import sqlite3

class Pharmacy:
def __init__(self, root):
self.root = root
self.root.title("Pharmacy Management System")
self.root.geometry("1350x800+0+0")
self.root.resizable(False, False)
self.root.iconbitmap(r"C:\Users\Lenovo\Desktop\Pharmacy_management-system-
master\image\doc.ico")

##### ADDMED VARIABLE ######


self.ref_variable = StringVar()
self.addmed_variable = StringVar()

########## MEDICINE DEPARTMENT VARIABLE #######


self.refno_var = StringVar()
self.companyname_var = StringVar()
self.typemed_var = StringVar()
self.medicine_var = StringVar()
self.lotno_var = StringVar()
self.issuedt_var = StringVar()
self.expdt_var = StringVar()
self.uses_var = StringVar()
self.sideeffect_var = StringVar()
self.warning_var = StringVar()
self.dosage_var = StringVar()
self.price_var = StringVar()
self.quantity_var = StringVar()

self.search_by = StringVar()
self.search_txt = StringVar()

######## title animation #########


self.txt = "PHARMACY MANAGEMENT SYSTEM"
self.count = 0
self.text = ""
self.color = ["green"]
self.heading = Label(self.root, text=self.txt, font=(
"times new roman", 30, "bold"), bg='grey', fg="blue", bd=9, relief=RIDGE)
self.heading.pack(side=TOP, fill=X)
self.slider()
self.heading_color()

# lbltitle=Label(self.root,text=" PHARMACY MANAGEMENT


SYSTEM",bd=11,relief=RIDGE
# ,bg='#7FFFD4',fg='#0020C2',font=('times new
roman',35,'bold'),padx=2,pady=4)
# lbltitle.pack(side=TOP,fill=X)

######### pharmacy logo label #######


img1 = Image.open(r"C:\Users\Lenovo\Desktop\Pharmacy_management-system-master\
image\new.png")
img1 = img1.resize((70, 45), Image.ANTIALIAS)
Bibliography:

Website:www.python.org
Sumita Arora Class 11 and 12

You might also like