Online Medicine Shop Project in JSP Mysql Netbeans

Click YouTube Play Buttons For Play Demo Video

Online Medicine Shop Project in JSP Mysql. online Pharmacy  shop project in JSP Mysql Netbeans. This project is a web application which is developed in Java JSP Mysql. Work on the Sales Reporting And Management System-Pharma project to enhance the growth of pharma employees/ companies.  this project is to develop an online web portal that can handle product information, can booking from distributors very fast from all over the world and online payment for orders and customer support for distributors. This type of application will atomize the procedure of drug supply through the Pharmaceuticals Company and improve business standards and customer relationships. This  application is use  distributors can view detailed information of transactions and get drugs information and see future orders from his account. Customers can easily visit this site and register themself, by filling a registration form. Once a customer is registered he/she can login using their email and password and can buy products available.  Users can also view doctors with their descriptions, clinics, and timings.

Project Module:- Online Medicine Shop Project in JSP Mysql

  1. 2 Login Page For Vendor login, Customer login
  2. Register Page
  3. Customer Homepage
  4. Vendor Homepage
  5. Buy Page
  6. Vendor Restock Page
  7. Home page
  8. Products
  9. Add product
  10. Purchase Medicine
  11. View Order

Technology Used in the project - Online Medicine Shop Project in JSP Mysql

  1. HTML : Page layout has been designed in HTML
  2. CSS : CSS has been used for all the desigining part
  3. JavaScript : All the validation task and animations has been developed by JavaScript
  4. JSP : All the front end logic has been written in JSP
  5. Java : All the bussiness logic has been written in Java
  6. MySQL : MySQL database has been used as database for the project
  7. Tomcat : Project will be run over the Tomcat server

Supported Operating System - Online Medicine Shop Project in JSP Mysql

  1. We can configure this project on following operating system.
  2. Windows : This project can easily be configured on windows operating system. For running this project on Windows system, you will have to install
  3. Tomcat 7, JDK 7, MySQL 5.
  4. Linux : We can run this project also on all versions of Linux operating system
  5. Mac : We can also easily configured this project on Mac operating system.

Download Link

Django Project on Medical Shop Management System

Subscribe YouTube For Latest Update Click Here

Latest Python Projects with source code

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

Buy Now Project Report ₹501

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.