SECURITY ALERT
Developer Tools Detected!
Redirecting in 3 seconds...
+91 73511 00545info@studyfornext.com

Loading Director's Message...

Our Mentors

Our Services

PLACEMENT

100% placement assistance.

INDUSTRIAL-TRAINING

Live project training.

ADMISSION

Direct admission guidance.

PROJECTS

Innovative project support.

Why Study For Next?

CAREER-ORIENTED

Curriculum designed to boost your career.

OFFLINE & ONLINE

Flexible learning modes.

GET CERTIFICATE

Earn recognized certifications.

EXPERT MENTORSHIP

Learn from industry experts.

FREE WORKSHOP

Complimentary skill workshops.

PAID WORKSHOP

Advanced technical workshops.

Our Courses

Mechanical Engineering
Mechanical

Mechanical Engineering

Master the mechanics of machinery and thermodynamics. Design the engines and systems that power the future industry.

View More
Electrical Engineering
Electrical

EEE Engineering

Explore the world of circuits, power systems, and electronics. Innovate with sustainable energy and modern electrical solutions.

View More
CS & IT Engineering
CS & IT

CS & IT Engineering

Code your way to success with full-stack development. Learn AI, software engineering, and the latest tech stacks.

View More
Civil Engineering
Civil

Civil Engineering

Shape the skylines and build the infrastructure of tomorrow. Expertise in structural design, planning, and construction.

View More
Robotics
Robotics

Robotic Courses

Merge hardware and intelligence. Build autonomous systems and learn the future of automation and robotics.

View More
School Courses
School

School Courses

Strong foundations for bright futures. Comprehensive learning modules designed for school-level academic excellence.

View More

Why Choose Us?

  • Expert mentors guiding students toward academic and career success
  • Comprehensive courses designed for practical learning and real results
  • Affordable education platform with updated resources and exam-focused preparation
  • Personality Development

0+

Students

0+

Teachers

0+

Awards

0+

Years

Our Affiliations

Django Project on Medical Shop Management System

Er Yogendra Singh Rajput February 02, 2023

Django Project on Medical Shop Management System

Medical Store Database Management System using Django

The main objective of the Django Project on Medical Shop Management System is to manage the details of Sells, Medicines, Stocks, Company,Inventory. It manages all the information about Sells, Medical Shop, Inventory, Sells. The project is totally built at administrative end and thus only the administrator is guaranteed the access. The purpose of the project is to build an application program to reduce the manual work for managing the Sells, Medicines, Medical Shop, Stocks. It tracks all the details about the Stocks, Company, Inventory.

Functionalities Provided By Django Project On Medical Shop Management System Are As Follows:

Dealer Management.

  • Add Dealer.
  • View Dealers.

Medicine  Management.

  • Add Medicine.
  • View Medicine.

Employees Management.

  • Add Employees.
  • View Employees.

Customers Management.

  • Add Customers.
  • View Customers

Purchase  Management.

  • New Purchase .
  • View All Purchase

Download Source Code

Installation Steps Django Project On Medical Shop Management System

Setting up the project:

Download the project zip file. Extract it.

Install Python3 in your system. Download the latest version. https://www.python.org/downloads/

Install django in your system using the following command:

pip install Django==1.11.6

Current version is Django 2.0.9 but this project uses the older version.

You can make use of any text editor such as Sublime, Atom, Pycharm, Webstorm etc. The link for Pycharm is mentioned below: Download the community(free) version. https://www.jetbrains.com/pycharm/download/#section=windows

Open Pycharm, open the extracted project folder in Pycharm. Go to Pycharm terminal and enter the following command:

python manage.py runserver

URL routing is handled in the file: pharma/urls.py

All the functionalities such as Create, update, delete, retrieve are present in the file: pharma/views.py

The database by default used with Django is SQLite3:

The database models are created in the file: pharma/models.py

Iff any changes are made in the models.py file such as adding, deleting fields or new tables, run the following two commands:

python manage.py makemigrations pharma python manage.py migrate

All the SQL queries are generated by Django implicitly. You can view the SQL commands using the following command:

python manage.py sqlmigrate pharma migration_name

“migration_name” is the file name generated during each Model file update, choose any filename from the folder and enter in the command to see the SQL commands of that update.

0 Views